diff options
Diffstat (limited to 'cli/bench/testdata/npm/hono/dist/utils/encode.d.ts')
-rw-r--r-- | cli/bench/testdata/npm/hono/dist/utils/encode.d.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/bench/testdata/npm/hono/dist/utils/encode.d.ts b/cli/bench/testdata/npm/hono/dist/utils/encode.d.ts new file mode 100644 index 000000000..e1db501e0 --- /dev/null +++ b/cli/bench/testdata/npm/hono/dist/utils/encode.d.ts @@ -0,0 +1,7 @@ +export declare const encodeBase64: (str: string) => string; +export declare const decodeBase64: (str: string) => string; +export declare const encodeBase64URL: (str: string) => string; +export declare const decodeBase64URL: (str: string) => string; +export declare const utf8ToUint8Array: (str: string) => Uint8Array; +export declare const arrayBufferToBase64: (buf: ArrayBuffer) => Promise<string>; +export declare const arrayBufferToBase64URL: (buf: ArrayBuffer) => Promise<string>; |