From cde5f0a09dfabd0b3600dbb8b0e847e14ba9e18b Mon Sep 17 00:00:00 2001 From: Ben Carter Date: Thu, 7 Mar 2024 00:01:39 -0500 Subject: [PATCH] autoimport got the best of me... damn it vscode --- types/global.d.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/types/global.d.ts b/types/global.d.ts index ae10be1..7170b67 100644 --- a/types/global.d.ts +++ b/types/global.d.ts @@ -1,5 +1,3 @@ -import { AssertEntry } from "typescript"; - declare type HookFunction = (event:number, ...args: any[]) => any declare type HookFunctionNoSelf = T extends (...a: infer U) => infer R ? (this: void, ...a:U) => R: never;