4 lines
235 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
export declare const decodeFromBase64: (base64: string) => Uint8Array;
export declare const decompressJson: (compressedJson: string) => string;
export declare const padStart: (value: string, length: number, padChar: string) => string;