Initial Commit
This commit is contained in:
24
electron/src/types.d.ts
vendored
Normal file
24
electron/src/types.d.ts
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
// This allows TypeScript to pick up the magic constants that's auto-generated by Forge's Vite
|
||||
// plugin that tells the Electron app where to look for the Vite-bundled app code (depending on
|
||||
// whether you're running in development or production).
|
||||
declare const MAIN_WINDOW_VITE_DEV_SERVER_URL: string;
|
||||
declare const MAIN_WINDOW_VITE_NAME: string;
|
||||
|
||||
// Preload types
|
||||
interface ThemeModeContext {
|
||||
toggle: () => Promise<boolean>;
|
||||
dark: () => Promise<void>;
|
||||
light: () => Promise<void>;
|
||||
system: () => Promise<boolean>;
|
||||
current: () => Promise<"dark" | "light" | "system">;
|
||||
}
|
||||
interface ElectronWindow {
|
||||
minimize: () => Promise<void>;
|
||||
maximize: () => Promise<void>;
|
||||
close: () => Promise<void>;
|
||||
}
|
||||
|
||||
declare interface Window {
|
||||
themeMode: ThemeModeContext;
|
||||
electronWindow: ElectronWindow;
|
||||
}
|
||||
Reference in New Issue
Block a user