import { SchemaBase } from '../generic/SchemaBase'; import { TsonSchemaOrPrimitive } from './TsonSchemaOrPrimitive'; export type OneOfTsonSchema = SchemaBase & { readonly oneOf: readonly TsonSchemaOrPrimitive[]; readonly description?: string; readonly default?: unknown; readonly examples?: unknown[]; };