diff options
author | Vendicated <vendicated@riseup.net> | 2022-08-29 18:45:58 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-08-29 18:45:58 +0200 |
commit | 1709ab61ef2138d350b3d45a3eba0d94d5adf0a1 (patch) | |
tree | 92cfba166ee58f268ac617197d462f4b4dab1af5 /src/globals.d.ts | |
parent | 876e622f4f61a4aa229ad69782d374335c3d8d6b (diff) | |
download | Vencord-1709ab61ef2138d350b3d45a3eba0d94d5adf0a1.tar.gz Vencord-1709ab61ef2138d350b3d45a3eba0d94d5adf0a1.tar.bz2 Vencord-1709ab61ef2138d350b3d45a3eba0d94d5adf0a1.zip |
Fix NPE when opening DevTools
Diffstat (limited to 'src/globals.d.ts')
-rw-r--r-- | src/globals.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
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 |