fix: preload script in tauri should not have export

This commit is contained in:
linonetwo
2023-02-08 23:16:12 +08:00
parent f01e0cd733
commit 5176d57d28
3 changed files with 9 additions and 10 deletions
-9
View File
@@ -16,12 +16,3 @@ function setEnvironmentVariables() {
}
setEnvironmentVariables();
declare global {
interface Window {
CLIENT_APP?: boolean;
__editoVersion?: string;
}
}
export {};
+8
View File
@@ -0,0 +1,8 @@
declare global {
interface Window {
CLIENT_APP?: boolean;
__editoVersion?: string;
}
}
export {};