From 0f27b84a5caa10d9056b7a4f9eace3771f8ea114 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Fri, 21 Oct 2022 19:35:23 +0530 Subject: chore(core): remove `core.opSync` (#16379) This patch removes the last uses of `core.opSync` from Deno. The new and JIT-friendly way to call sync ops is `core.ops.op_name()`. --- cli/tsc/compiler.d.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'cli') diff --git a/cli/tsc/compiler.d.ts b/cli/tsc/compiler.d.ts index ffd4695ae..b550c938b 100644 --- a/cli/tsc/compiler.d.ts +++ b/cli/tsc/compiler.d.ts @@ -38,8 +38,6 @@ declare global { interface DenoCore { encode(value: string): Uint8Array; // deno-lint-ignore no-explicit-any - opSync(name: string, params: T): any; - // deno-lint-ignore no-explicit-any ops: Record any>; print(msg: string, stderr: boolean): void; registerErrorClass( -- cgit v1.2.3