UNPKG

typia

Version:

Superfast runtime validators with only one line

14 lines (11 loc) 300 B
export namespace Atomic { export type Type = boolean | number | string | bigint; export type Literal = "boolean" | "integer" | "number" | "string" | "bigint"; export type Mapper = { boolean: boolean; integer: number; number: number; string: string; bigint: bigint; }; }