autoimport got the best of me... damn it vscode

This commit is contained in:
2024-03-07 00:01:39 -05:00
parent a04524c326
commit cde5f0a09d

2
types/global.d.ts vendored
View File

@@ -1,5 +1,3 @@
import { AssertEntry } from "typescript";
declare type HookFunction = (event:number, ...args: any[]) => any
declare type HookFunctionNoSelf<T extends HookFunction> = T extends (...a: infer U) => infer R ? (this: void, ...a:U) => R: never;