open-next-cdk
Version:
Deploy a NextJS app using OpenNext packaging to serverless AWS using CDK
7 lines (6 loc) • 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 };