UNPKG

fortify-schema

Version:

TypeScript interface-like schema validation system that's easier to use than Zod

19 lines (17 loc) 282 B
export namespace API { export interface User { definition: { id: number; email: string; name: string; age?: string; tags?: string; status: { union: any; }; role: { const: string; }; }; } }