UNPKG

@vtaits/form-schema

Version:

Serialization and parsing form values by schema

11 lines (8 loc) 306 B
import { B as BaseFieldSchema } from './types-BSr5Y0bw.js'; type DateBaseSchema<FormApi> = BaseFieldSchema<FormApi, string | number | Date | null> & { clientDateFormat?: string; displayDateFormat?: string; serverDateFormat?: string; utc?: boolean; }; export type { DateBaseSchema as D };