UNPKG
@sontrx/typia
Version:
latest (7.6.4)
7.6.4
7.6.3
Superfast runtime validators with only one line
typia.io
samchon/typia
@sontrx/typia
/
src
/
typings
/
Atomic.ts
14 lines
(11 loc)
•
300 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
; }; }