Skip to content

Commit

Permalink
Iterate
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Telatynski <[email protected]>
  • Loading branch information
t3chguy committed Dec 3, 2024
1 parent 5e65eb7 commit c96b0f9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/@types/global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,8 @@ declare global {
webkitGetUserMedia?: DummyInterfaceWeShouldntBeUsingThis;
}

type Base64Alphabet = "base64" | "base64url";

export interface Uint8ArrayToBase64Options {
alphabet?: Base64Alphabet;
alphabet?: "base64" | "base64url";
omitPadding?: boolean;
}

Expand All @@ -81,7 +79,7 @@ declare global {
}

export interface Uint8ArrayFromBase64Options {
alphabet?: Base64Alphabet;
alphabet?: "base64" | "base64url";
lastChunkHandling?: "loose" | "strict" | "stop-before-partial";
}

Expand Down

0 comments on commit c96b0f9

Please sign in to comment.