UNPKG

@sinclair/typebox

Version:

Json Schema Type Builder with Static Type Resolution for TypeScript

7 lines (6 loc) 215 B
import { CreateType } from '../create/index.mjs'; import { Kind } from '../symbols/index.mjs'; /** `[Json]` Creates an Any type */ export function Any(options) { return CreateType({ [Kind]: 'Any' }, options); }