UNPKG

@ai-sdk/provider-utils

Version:
12 lines (9 loc) 241 B
import { parseAnyDef, type JsonSchema7AnyType } from './any'; export type JsonSchema7UndefinedType = { not: JsonSchema7AnyType; }; export function parseUndefinedDef(): JsonSchema7UndefinedType { return { not: parseAnyDef(), }; }