diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-10-02 00:51:05 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-10-01 18:51:05 -0400 |
commit | 75eeac03f31521dff1ef7db9ff2a9cb32a97b111 (patch) | |
tree | 162e448213ab99b88f9fd39796ec90db54cd6db7 /deno_typescript | |
parent | ffbf0c20ccc4e70281958f18ed117f40bdd91397 (diff) |
use Isolate::register_op in deno_cli (#3039)
Diffstat (limited to 'deno_typescript')
-rw-r--r-- | deno_typescript/lib.deno_core.d.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/deno_typescript/lib.deno_core.d.ts b/deno_typescript/lib.deno_core.d.ts index 423e53578..c3a20eb08 100644 --- a/deno_typescript/lib.deno_core.d.ts +++ b/deno_typescript/lib.deno_core.d.ts @@ -37,10 +37,7 @@ declare interface DenoCore { shift(): Uint8Array | null; }; - ops: { - init(): void; - get(name: string): number; - }; + ops(): Record<string, number>; recv(cb: MessageCallback): void; |