From 1709ab61ef2138d350b3d45a3eba0d94d5adf0a1 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Mon, 29 Aug 2022 18:45:58 +0200 Subject: Fix NPE when opening DevTools --- src/globals.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/globals.d.ts') diff --git a/src/globals.d.ts b/src/globals.d.ts index 610466a..ca43786 100644 --- a/src/globals.d.ts +++ b/src/globals.d.ts @@ -1,7 +1,5 @@ -import TVencordNative from "./VencordNative"; - declare global { - export var VencordNative: typeof TVencordNative; + export var VencordNative: typeof import("./VencordNative").default; export var appSettings: { set(setting: string, v: any): void; }; @@ -12,3 +10,5 @@ declare global { }; } } + +export { }; \ No newline at end of file -- cgit