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

View file

@ -25,9 +25,9 @@ window["denoMain"] = () => {
const argv: string[] = [];
for (let i = 0; i < msg.startArgvLength(); i++) {
const arg = msg.startArgv(i);
deno.print(`argv[${i}] ${arg}`);
argv.push(msg.startArgv(i));
}
deno.print(`argv ${argv}`);
};
function typedArrayToArrayBuffer(ta: Uint8Array): ArrayBuffer {