import { SchemaError, NullableType } from '../types/types'; import { SchemaMap } from './SchemaMap'; export type OneOf = object> = { [Key in keyof Input]?: SchemaMap[Key]; }; export type OneOfConfigMessage = string | SchemaError | SchemaError[];