UNPKG

mongodb-data-service

Version:
11 lines 368 B
import type { Document } from 'mongodb'; export type SearchIndexStatus = 'BUILDING' | 'FAILED' | 'PENDING' | 'READY' | 'STALE' | 'DELETING'; export type SearchIndex = { id: string; name: string; type?: string; status: SearchIndexStatus; queryable: boolean; latestDefinition: Document; }; //# sourceMappingURL=search-index-detail-helper.d.ts.map