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;