ravendb
Version:
RavenDB client for Node.js
12 lines • 544 B
TypeScript
import { IndexLockMode, IndexPriority, IndexType } from "../Indexes/Enums.js";
import { IndexSourceType } from "../Indexes/IndexSourceType.js";
import { ArchivedDataProcessingBehavior } from "../DataArchival/ArchivedDataProcessingBehavior.js";
export interface EssentialIndexInformation {
name: string;
lockMode: IndexLockMode;
priority: IndexPriority;
type: IndexType;
sourceType: IndexSourceType;
archivedDataProcessingBehavior: ArchivedDataProcessingBehavior;
}
//# sourceMappingURL=EssentialIndexInformation.d.ts.map