mirror of
https://github.com/denoland/deno.git
synced 2024-10-29 08:58:01 -04:00
bbcdc9b488
It is unchanged in this commit.
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
// Type definitions for text-encoding
|
|
// Project: https://github.com/inexorabletash/text-encoding
|
|
// Definitions by: MIZUNE Pine <https://github.com/pine613>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace TextEncoding {
|
|
interface TextDecoderOptions {
|
|
fatal?: boolean;
|
|
ignoreBOM?: boolean;
|
|
}
|
|
|
|
interface TextDecodeOptions {
|
|
stream?: boolean;
|
|
}
|
|
|
|
interface TextEncoderOptions {
|
|
NONSTANDARD_allowLegacyEncoding?: boolean;
|
|
}
|
|
|
|
interface TextDecoder {
|
|
encoding: string;
|
|
fatal: boolean;
|
|
ignoreBOM: boolean;
|
|
decode(input?: ArrayBuffer | ArrayBufferView, options?: TextDecodeOptions): string;
|
|
}
|
|
|
|
interface TextEncoder {
|
|
encoding: string;
|
|
encode(input?: string, options?: TextEncodeOptions): Uint8Array;
|
|
}
|
|
|
|
interface TextEncodeOptions {
|
|
stream?: boolean;
|
|
}
|
|
|
|
interface TextEncoderStatic {
|
|
(utfLabel?: string, options?: TextEncoderOptions): TextEncoder;
|
|
new (utfLabel?: string, options?: TextEncoderOptions): TextEncoder;
|
|
}
|
|
|
|
interface TextDecoderStatic {
|
|
(label?: string, options?: TextDecoderOptions): TextDecoder;
|
|
new (label?: string, options?: TextDecoderOptions): TextDecoder;
|
|
}
|
|
|
|
interface TextEncodingStatic {
|
|
TextEncoder: TextEncoderStatic;
|
|
TextDecoder: TextDecoderStatic;
|
|
}
|
|
}
|
|
|
|
declare var TextDecoder: TextEncoding.TextDecoderStatic;
|
|
|
|
declare var TextEncoder: TextEncoding.TextEncoderStatic;
|
|
|
|
declare var TextEncoding: TextEncoding.TextEncodingStatic;
|
|
|
|
declare module "text-encoding" {
|
|
export = TextEncoding;
|
|
}
|