mirror of
https://github.com/denoland/deno.git
synced 2025-03-10 06:07:03 -04:00
parent
ad2405d46c
commit
a9e6c16d8b
1 changed files with 74 additions and 22 deletions
96
op_crates/web/lib.deno_web.d.ts
vendored
96
op_crates/web/lib.deno_web.d.ts
vendored
|
@ -178,32 +178,84 @@ declare function atob(s: string): string;
|
||||||
*/
|
*/
|
||||||
declare function btoa(s: string): string;
|
declare function btoa(s: string): string;
|
||||||
|
|
||||||
declare class TextDecoder {
|
/** A decoder for a specific method, that is a specific character encoding, like utf-8, iso-8859-2, koi8, cp1261, gbk, etc. A decoder takes a stream of bytes as input and emits a stream of code points. For a more scalable, non-native library, see StringView – a C-like representation of strings based on typed arrays. */
|
||||||
/** Returns encoding's name, lowercased. */
|
interface TextDecoder extends TextDecoderCommon {
|
||||||
readonly encoding: string;
|
/**
|
||||||
/** Returns `true` if error mode is "fatal", and `false` otherwise. */
|
* Returns the result of running encoding's decoder. The method can be invoked zero or more times with options's stream set to true, and then once without options's stream (or set to false), to process a fragmented input. If the invocation without options's stream (or set to false) has no input, it's clearest to omit both arguments.
|
||||||
readonly fatal: boolean;
|
*
|
||||||
/** Returns `true` if ignore BOM flag is set, and `false` otherwise. */
|
* ```
|
||||||
readonly ignoreBOM = false;
|
* var string = "", decoder = new TextDecoder(encoding), buffer;
|
||||||
constructor(
|
* while(buffer = next_chunk()) {
|
||||||
label?: string,
|
* string += decoder.decode(buffer, {stream:true});
|
||||||
options?: { fatal?: boolean; ignoreBOM?: boolean },
|
* }
|
||||||
);
|
* string += decoder.decode(); // end-of-queue
|
||||||
/** Returns the result of running encoding's decoder. */
|
* ```
|
||||||
decode(input?: BufferSource, options?: { stream?: false }): string;
|
*
|
||||||
readonly [Symbol.toStringTag]: string;
|
* If the error mode is "fatal" and encoding's decoder returns error, throws a TypeError.
|
||||||
|
*/
|
||||||
|
decode(input?: BufferSource, options?: TextDecodeOptions): string;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare class TextEncoder {
|
declare var TextDecoder: {
|
||||||
/** Returns "utf-8". */
|
prototype: TextDecoder;
|
||||||
readonly encoding = "utf-8";
|
new (label?: string, options?: TextDecoderOptions): TextDecoder;
|
||||||
/** Returns the result of running UTF-8's encoder. */
|
};
|
||||||
|
|
||||||
|
interface TextDecoderCommon {
|
||||||
|
/**
|
||||||
|
* Returns encoding's name, lowercased.
|
||||||
|
*/
|
||||||
|
readonly encoding: string;
|
||||||
|
/**
|
||||||
|
* Returns true if error mode is "fatal", otherwise false.
|
||||||
|
*/
|
||||||
|
readonly fatal: boolean;
|
||||||
|
/**
|
||||||
|
* Returns the value of ignore BOM.
|
||||||
|
*/
|
||||||
|
readonly ignoreBOM: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TextDecodeOptions {
|
||||||
|
// TODO(caspervonb) support streaming.
|
||||||
|
stream?: false;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TextDecoderOptions {
|
||||||
|
fatal?: boolean;
|
||||||
|
ignoreBOM?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface TextEncoderEncodeIntoResult {
|
||||||
|
read?: number;
|
||||||
|
written?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** TextEncoder takes a stream of code points as input and emits a stream of bytes. For a more scalable, non-native library, see StringView – a C-like representation of strings based on typed arrays. */
|
||||||
|
interface TextEncoder extends TextEncoderCommon {
|
||||||
|
/**
|
||||||
|
* Returns the result of running UTF-8's encoder.
|
||||||
|
*/
|
||||||
encode(input?: string): Uint8Array;
|
encode(input?: string): Uint8Array;
|
||||||
|
/**
|
||||||
|
* Runs the UTF-8 encoder on source, stores the result of that operation into destination, and returns the progress made as an object wherein read is the number of converted code units of source and written is the number of bytes modified in destination.
|
||||||
|
*/
|
||||||
encodeInto(
|
encodeInto(
|
||||||
input: string,
|
source: string,
|
||||||
dest: Uint8Array,
|
destination: Uint8Array,
|
||||||
): { read: number; written: number };
|
): TextEncoderEncodeIntoResult;
|
||||||
readonly [Symbol.toStringTag]: string;
|
}
|
||||||
|
|
||||||
|
declare var TextEncoder: {
|
||||||
|
prototype: TextEncoder;
|
||||||
|
new (): TextEncoder;
|
||||||
|
};
|
||||||
|
|
||||||
|
interface TextEncoderCommon {
|
||||||
|
/**
|
||||||
|
* Returns "utf-8".
|
||||||
|
*/
|
||||||
|
readonly encoding: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** A controller object that allows you to abort one or more DOM requests as and
|
/** A controller object that allows you to abort one or more DOM requests as and
|
||||||
|
|
Loading…
Add table
Reference in a new issue