Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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;