UNPKG

@backland/schema

Version:

TypeScript schema declaration and validation library with static type inference

7 lines (6 loc) 229 B
import { FieldType, FieldTypeParser } from './FieldType'; export declare class NullField extends FieldType<string, 'null', undefined> { parse: FieldTypeParser<string>; constructor(); static create: () => NullField; }