import { ObjectBsonSchema, FromObjectBsonSchema } from './bson'; export type MongoCollectionModel = { readonly schema: S; readonly indexes?: readonly (keyof S['properties'] | { bond: readonly (keyof S['properties'])[]; })[]; readonly docs?: FromObjectBsonSchema[]; };