Import ts file from prototype without change

From commit 559453cf6c
Excluding v8worker.d.ts, main.ts, and deno.d.ts.

Updates tslint.json to be original settings.
This commit is contained in:
Ryan Dahl 2018-07-06 11:20:35 -04:00
parent 21e1425656
commit fe404dfce9
16 changed files with 1374 additions and 73 deletions

6
js/text-encoding.d.ts vendored Normal file
View file

@ -0,0 +1,6 @@
// Remove and depend on @types/text-encoding once this PR is merged
// https://github.com/DefinitelyTyped/DefinitelyTyped/pull/26141
declare module "text-encoding" {
export const TextEncoder: TextEncoder;
export const TextDecoder: TextDecoder;
}