ravendb
Version:
RavenDB client for Node.js
10 lines • 722 B
TypeScript
import { IDocumentStore } from "../IDocumentStore.js";
import { DocumentConventions } from "../Conventions/DocumentConventions.js";
import { IndexDefinition } from "./IndexDefinition.js";
import { IAbstractIndexCreationTask } from "./IAbstractIndexCreationTask.js";
export declare class IndexCreation {
static createIndexes(indexes: IAbstractIndexCreationTask[], store: IDocumentStore): Promise<void>;
static createIndexes(indexes: IAbstractIndexCreationTask[], store: IDocumentStore, conventions: DocumentConventions): Promise<void>;
static createIndexesToAdd(indexCreationTasks: IAbstractIndexCreationTask[], conventions: DocumentConventions): IndexDefinition[];
}
//# sourceMappingURL=IndexCreation.d.ts.map