-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
71 lines (70 loc) · 1.68 KB
/
index.ts
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
60
61
62
63
64
65
66
67
68
69
70
71
/**
* `structure-bytes` exports the following named members:
*
* - **From** `io`
* - [[writeType]]
* - [[writeValue]]
* - [[writeTypeAndValue]]
* - [[readType]]
* - [[readValue]]
* - [[readTypeAndValue]]
* - [[httpRespond]]
* - **From** `read`
* - [type](read.html#type) as `r.type`
* - **From** `recursive-registry`
* - [[registerType]]
* - [[getType]]
* - [[isRegistered]]
* - **From** `types`
* - [[Type]]
* - Signed integer types
* - [[ByteType]]
* - [[ShortType]]
* - [[IntType]]
* - [[LongType]]
* - [[BigIntType]]
* - [[FlexIntType]]
* - Unsigned integer types
* - [[UnsignedByteType]]
* - [[UnsignedShortType]]
* - [[UnsignedIntType]]
* - [[UnsignedLongType]]
* - [[BigUnsignedIntType]]
* - [[FlexUnsignedIntType]]
* - Chrono types
* - [[DateType]]
* - [[DayType]]
* - [[TimeType]]
* - Floating-point types
* - [[FloatType]]
* - [[DoubleType]]
* - Boolean types
* - [[BooleanType]]
* - [[BooleanTupleType]]
* - [[BooleanArrayType]]
* - String and buffer types
* - [[CharType]]
* - [[StringType]]
* - [[OctetsType]]
* - Non-primitive types
* - [[TupleType]]
* - [[StructType]]
* - [[ArrayType]]
* - [[SetType]]
* - [[MapType]]
* - [[EnumType]]
* - [[ChoiceType]]
* - [[RecursiveType]]
* - [[SingletonType]]
* - Modifier types
* - [[OptionalType]]
* - [[PointerType]]
*/
/*istanbul ignore next*/ //for TypeScript's auto-generated code
/**
*/
export * from './io'
import * as read from './read'
export const r = read
export * from './recursive-registry'
export * from './types'