UNPKG

from-schema

Version:

Infer TypeScript types from JSON schemas

7 lines (6 loc) 159 B
export type DateJsonSchema = { readonly type: 'string'; readonly format: 'date-time'; readonly minimum?: string; readonly maximum?: string; };