diff options
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; |