mirror of
https://github.com/denoland/deno.git
synced 2024-12-30 11:16:38 -05:00
7 lines
250 B
TypeScript
7 lines
250 B
TypeScript
|
// Remove and depend on @types/text-encoding once this PR is merged
|
||
|
// https://github.com/DefinitelyTyped/DefinitelyTyped/pull/26141
|
||
|
declare module "text-encoding" {
|
||
|
export const TextEncoder: TextEncoder;
|
||
|
export const TextDecoder: TextDecoder;
|
||
|
}
|