mirror of
https://github.com/esiur/esiur-js.git
synced 2025-06-26 23:03:13 +00:00
Uint8Array
This commit is contained in:
@ -84,6 +84,7 @@ IdentifierToTypeMap[RepresentationTypeIdentifier.List] = Array;
|
||||
IdentifierToTypeMap[RepresentationTypeIdentifier.Map] = Map;
|
||||
IdentifierToTypeMap[RepresentationTypeIdentifier.ResourceArray] = ResourceArray;
|
||||
IdentifierToTypeMap[RepresentationTypeIdentifier.RecordArray] = RecordArray;
|
||||
IdentifierToTypeMap[RepresentationTypeIdentifier.RawData] = Uint8Array;
|
||||
|
||||
const TypeToIdentifierMap = {};
|
||||
TypeToIdentifierMap[Void] = RepresentationTypeIdentifier.Void;
|
||||
@ -112,6 +113,7 @@ TypeToIdentifierMap[Array] = RepresentationTypeIdentifier.List;
|
||||
TypeToIdentifierMap[Map] = RepresentationTypeIdentifier.Map;
|
||||
TypeToIdentifierMap[RecordArray] = RepresentationTypeIdentifier.RecordArray;
|
||||
TypeToIdentifierMap[ResourceArray] = RepresentationTypeIdentifier.ResourceArray;
|
||||
TypeToIdentifierMap[Uint8Array] = RepresentationTypeIdentifier.RawData;
|
||||
|
||||
const TupleIdentifierByLength = {
|
||||
2: RepresentationTypeIdentifier.Tuple2,
|
||||
|
Reference in New Issue
Block a user