From 8797bb0e6277b9ea9c6777b50b947070c2ae3276 Mon Sep 17 00:00:00 2001 From: Marvin Hagemeister <marvin@deno.com> Date: Tue, 9 Jul 2024 09:08:47 +0200 Subject: [PATCH] chore: remove unused type --- tools/core_mod.d.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tools/core_mod.d.ts b/tools/core_mod.d.ts index 0292474413..ef6d335c93 100644 --- a/tools/core_mod.d.ts +++ b/tools/core_mod.d.ts @@ -4,12 +4,6 @@ // deno-lint-ignore no-explicit-any export const core: any; -// deno-lint-ignore no-explicit-any -type UncurryThis<T extends (this: any, ...args: any[]) => any> = ( - self: ThisParameterType<T>, - ...args: Parameters<T> -) => ReturnType<T>; - export const primordials: typeof __bootstrap.primordials; // deno-lint-ignore no-explicit-any