chore: restore missing dependency and build files in node_modules

This commit is contained in:
sebvtl728
2026-06-21 11:01:17 +02:00
commit 01ff723dff
2044 changed files with 638056 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
export declare const encodeToBase64: (bytes: Uint8Array) => string;
export declare const decodeFromBase64: (base64: string) => Uint8Array;
/**
* If the `dataUri` input is a data URI, then the data URI prefix must not be
* longer than 100 characters, or this function will fail to decode it.
*
* @param dataUri a base64 data URI or plain base64 string
* @returns a Uint8Array containing the decoded input
*/
export declare const decodeFromBase64DataUri: (dataUri: string) => Uint8Array;
//# sourceMappingURL=base64.d.ts.map