Files
Webklar.com/node_modules/next/dist/compiled/@edge-runtime/primitives/encoding.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

9 lines
310 B
TypeScript

declare const TextEncoderConstructor: typeof TextEncoder
declare const TextDecoderConstructor: typeof TextDecoder
declare const atob: (encoded: string) => string
declare const btoa: (str: string) => string
export { TextDecoderConstructor as TextDecoder, TextEncoderConstructor as TextEncoder, atob, btoa };