UNPKG

ravendb

Version:
12 lines 544 B
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