Type alias IndexesApplyResults

IndexesApplyResults: {
    mongodb: {
        created: {
            collection: string;
            name: string;
            opts?: Omit<CreateIndexesOptions, "name">;
            specs: { [ K in string]: IndexDirection };
        }[];
        deleted: {
            collection: string;
            name: string;
        }[];
        failed: {
            collection: string;
            error: unknown;
            name: string;
            opts?: Omit<CreateIndexesOptions, "name">;
            specs: { [ K in string]: IndexDirection };
        }[];
    };
}

Type declaration

  • mongodb: {
        created: {
            collection: string;
            name: string;
            opts?: Omit<CreateIndexesOptions, "name">;
            specs: { [ K in string]: IndexDirection };
        }[];
        deleted: {
            collection: string;
            name: string;
        }[];
        failed: {
            collection: string;
            error: unknown;
            name: string;
            opts?: Omit<CreateIndexesOptions, "name">;
            specs: { [ K in string]: IndexDirection };
        }[];
    }
    • created: {
          collection: string;
          name: string;
          opts?: Omit<CreateIndexesOptions, "name">;
          specs: { [ K in string]: IndexDirection };
      }[]
    • deleted: {
          collection: string;
          name: string;
      }[]
    • failed: {
          collection: string;
          error: unknown;
          name: string;
          opts?: Omit<CreateIndexesOptions, "name">;
          specs: { [ K in string]: IndexDirection };
      }[]

Generated using TypeDoc