first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 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;