diff options
Diffstat (limited to 'deno_typescript')
-rw-r--r-- | deno_typescript/lib.deno_core.d.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/deno_typescript/lib.deno_core.d.ts b/deno_typescript/lib.deno_core.d.ts index 0bd3b6415..423e53578 100644 --- a/deno_typescript/lib.deno_core.d.ts +++ b/deno_typescript/lib.deno_core.d.ts @@ -37,6 +37,11 @@ declare interface DenoCore { shift(): Uint8Array | null; }; + ops: { + init(): void; + get(name: string): number; + }; + recv(cb: MessageCallback): void; send( |