mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
45 lines
1.3 KiB
TypeScript
45 lines
1.3 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/borisyankov/DefinitelyTyped
|
|
|
|
declare module 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?: ArrayBufferView, options?: TextDecodeOptions): string;
|
|
}
|
|
|
|
interface TextEncoder {
|
|
encoding: string;
|
|
encode(input?: string, options?: TextEncodeOptions): Uint8Array;
|
|
}
|
|
|
|
interface TextEncodeOptions {
|
|
stream?: boolean;
|
|
}
|
|
}
|
|
|
|
declare var TextDecoder: {
|
|
(label?: string, options?: TextEncoding.TextDecoderOptions): TextEncoding.TextDecoder;
|
|
new (label?: string, options?: TextEncoding.TextDecoderOptions): TextEncoding.TextDecoder;
|
|
};
|
|
|
|
declare var TextEncoder: {
|
|
(utfLabel?: string, options?: TextEncoding.TextEncoderOptions): TextEncoding.TextEncoder;
|
|
new (utfLabel?: string, options?: TextEncoding.TextEncoderOptions): TextEncoding.TextEncoder;
|
|
}; |