import { SchemaBase } from '../generic/SchemaBase'; import { BsonSchemaOrPrimitive } from './BsonSchemaOrPrimitive'; export type AllOfBsonSchema = SchemaBase & { readonly allOf: readonly BsonSchemaOrPrimitive[]; readonly description?: string; readonly examples?: unknown[]; };