-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathisly.ts
More file actions
59 lines (56 loc) · 1.96 KB
/
Copy pathisly.ts
File metadata and controls
59 lines (56 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
export { Any } from "./Any"
export { Array } from "./Array"
export { Boolean } from "./Boolean"
export { Class } from "./Class"
export { creator } from "./creator"
export { Definition } from "./Definition"
export { Flaw } from "./Flaw"
export { From } from "./From"
export { Function } from "./Function"
export { Instance } from "./Instance"
export { Intersection } from "./Intersection"
export { Inverse } from "./Inverse"
export { Lazy } from "./Lazy"
export { Name } from "./Name"
export { Null } from "./Null"
export { Number } from "./Number"
export { _Object as Object } from "./Object"
export { Optional } from "./Optional"
export { Readonly } from "./Readonly"
export { Record } from "./Record"
export { Standard } from "./Standard"
export { String } from "./String"
export { Tuple } from "./Tuple"
export { Type } from "./Type"
export { Transformer } from "./Transformer"
export { Undefined } from "./Undefined"
export { Union } from "./Union"
export { Unknown } from "./Unknown"
export { Json } from "./Json"
export { BindResult } from "./BindResult"
import { creator } from "./creator"
export type Creator = typeof creator
export const any = creator.any
export const array = creator.array
export const boolean = creator.boolean
export const from = creator.from
const _function = creator.function
export { _function as function }
const _null = creator.null
export { _null as null }
export const number = creator.number
export const instance = creator.instance
export const intersection = creator.intersection
export const inverse = creator.inverse
export const object = creator.object
export const optional = creator.optional
export const readonly = creator.readonly
export const record = creator.record
export const string = creator.string
export const tuple = creator.tuple
const _undefined = creator.undefined
export { _undefined as undefined }
export const union = creator.union
export const unknown = creator.unknown
export const lazy = creator.lazy
export const standard = creator.standard