ravendb
Version:
RavenDB client for Node.js
8 lines • 317 B
TypeScript
import { IndexState } from "../Indexes/Enums.js";
import { EssentialIndexInformation } from "./EssentialIndexInformation.js";
export interface IndexInformation extends EssentialIndexInformation {
isStale: boolean;
state: IndexState;
lastIndexingTime: Date;
}
//# sourceMappingURL=IndexInformation.d.ts.map