Type alias IndexesPlanResults

IndexesPlanResults: {
    mongodb: {
        toCreate: {
            collection: string;
            name: string;
            opts?: Omit<CreateIndexesOptions, "name">;
            specs: { [ K in string]: IndexDirection };
        }[];
        toDelete: {
            collection: string;
            name: string;
        }[];
    };
}

Type declaration

  • mongodb: {
        toCreate: {
            collection: string;
            name: string;
            opts?: Omit<CreateIndexesOptions, "name">;
            specs: { [ K in string]: IndexDirection };
        }[];
        toDelete: {
            collection: string;
            name: string;
        }[];
    }
    • toCreate: {
          collection: string;
          name: string;
          opts?: Omit<CreateIndexesOptions, "name">;
          specs: { [ K in string]: IndexDirection };
      }[]
    • toDelete: {
          collection: string;
          name: string;
      }[]

Generated using TypeDoc