mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 02:07:56 +00:00
6 lines
147 B
TypeScript
6 lines
147 B
TypeScript
export declare class TextDecoder {
|
|
__encoding?: string;
|
|
constructor(encoding?: 'utf-8' | 'utf8');
|
|
decode(value: Uint8Array): string;
|
|
}
|