preserves/implementations/javascript/packages/core/src/constants.ts

17 lines
207 B
TypeScript
Raw Normal View History

export enum Tag {
2022-06-16 08:14:05 +00:00
False = 0xa0,
True,
Float,
2022-06-16 08:14:05 +00:00
SignedInteger,
String,
ByteString,
Symbol,
Record,
Sequence,
Set,
Dictionary,
2022-06-16 08:14:05 +00:00
Embedded,
Annotation = 0xbf,
}