diff options
Diffstat (limited to 'ext/web/internal.d.ts')
-rw-r--r-- | ext/web/internal.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/web/internal.d.ts b/ext/web/internal.d.ts index ee20b6ead..a07f4b814 100644 --- a/ext/web/internal.d.ts +++ b/ext/web/internal.d.ts @@ -41,6 +41,8 @@ declare module "ext:deno_web/00_infra.js" { }; function forgivingBase64Encode(data: Uint8Array): string; function forgivingBase64Decode(data: string): Uint8Array; + function forgivingBase64UrlEncode(data: Uint8Array | string): string; + function forgivingBase64UrlDecode(data: string): Uint8Array; function serializeJSValueToJSONString(value: unknown): string; } |