Metzploreur/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts
clement callaert 244d45ceb8 Version 2
2023-11-01 17:33:25 +01:00

6 lines
295 B
TypeScript

declare const alphabetByEncoding: Record<string, number>;
declare const alphabetByValue: Array<string>;
declare const bitsPerLetter = 6;
declare const bitsPerByte = 8;
declare const maxLetterValue = 63;
export { alphabetByEncoding, alphabetByValue, bitsPerLetter, bitsPerByte, maxLetterValue };