You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
360 B

export declare const enum MaxEncodingOverhead {
Null = 4,
Boolean = 5,
Number = 22,
String = 5,
StringLengthMultiplier = 5,
Binary = 41,
BinaryLengthMultiplier = 2,
Array = 5,
ArrayElement = 1,
Object = 5,
ObjectElement = 2,
Undefined = 45
}
export declare const maxEncodingCapacity: (value: unknown) => number;