UNPKG

@sinclair/typebox

Version:

Json Schema Type Builder with Static Type Resolution for TypeScript

9 lines (8 loc) 278 B
import type { TSchema, SchemaOptions } from '../schema/index'; import { Kind } from '../symbols/index'; export interface TAny extends TSchema { [Kind]: 'Any'; static: any; } /** `[Json]` Creates an Any type */ export declare function Any(options?: SchemaOptions): TAny;