Files
envHelper/src/vite-env.d.ts
MrSphay cc2aacadb5
Some checks failed
Build Windows App / build-windows (push) Failing after 5m27s
Replace native menu with custom titlebar
2026-05-01 17:09:07 +02:00

17 lines
393 B
TypeScript

/// <reference types="vite/client" />
interface EnvHelperFileResult {
path: string;
content: string;
}
interface Window {
envHelper?: {
openFile: () => Promise<EnvHelperFileResult | null>;
saveFile: (content: string) => Promise<string | null>;
minimizeWindow: () => Promise<void>;
toggleMaximizeWindow: () => Promise<void>;
closeWindow: () => Promise<void>;
};
}