removed electron

This commit is contained in:
2026-04-15 17:40:27 -06:00
parent 48d761c713
commit 84edddded8
11 changed files with 73 additions and 512 deletions

View File

@ -1,6 +1,6 @@
/// <reference types="vite/client" />
interface ElectronAPI {
interface DesktopAPI {
openFile: (options?: Record<string, unknown>) => Promise<string | null>;
saveFile: (options?: Record<string, unknown>) => Promise<string | null>;
openProject: () => Promise<string | null>;
@ -15,5 +15,5 @@ interface ElectronAPI {
}
interface Window {
electronAPI?: ElectronAPI;
electronAPI: DesktopAPI;
}