7 lines
102 B
TypeScript
7 lines
102 B
TypeScript
|
declare global {
|
||
|
class TextDecoder {
|
||
|
decode(data: Uint8Array): string;
|
||
|
}
|
||
|
}
|
||
|
export {};
|