typia
Version:
Superfast runtime validators with only one line
5 lines (4 loc) • 349 B
TypeScript
export declare const boolean: (value: string | undefined) => string | boolean | undefined;
export declare const bigint: (value: string | undefined) => string | bigint | undefined;
export declare const number: (value: string | undefined) => string | number | undefined;
export declare const string: (value: string | undefined) => string | undefined;