0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 12:16:11 -05:00
This commit is contained in:
Ryan Dahl 2018-05-27 14:21:18 -04:00
parent 92e97bca41
commit 3d76dc51b7

6
text-encoding.d.ts vendored
View file

@ -1,4 +1,3 @@
// Type definitions for text-encoding // Type definitions for text-encoding
// Project: https://github.com/inexorabletash/text-encoding // Project: https://github.com/inexorabletash/text-encoding
// Definitions by: MIZUNE Pine <https://github.com/pine613> // Definitions by: MIZUNE Pine <https://github.com/pine613>
@ -22,7 +21,10 @@ declare namespace TextEncoding {
encoding: string; encoding: string;
fatal: boolean; fatal: boolean;
ignoreBOM: boolean; ignoreBOM: boolean;
decode(input?: ArrayBuffer | ArrayBufferView, options?: TextDecodeOptions): string; decode(
input?: ArrayBuffer | ArrayBufferView,
options?: TextDecodeOptions
): string;
} }
interface TextEncoder { interface TextEncoder {