React 19, Electron 35 barebones init.

Remaining files.
This commit is contained in:
Patrick Fic
2025-03-11 14:53:12 -07:00
commit 87b261178c
28 changed files with 11140 additions and 0 deletions

8
src/preload/index.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import { ElectronAPI } from '@electron-toolkit/preload'
declare global {
interface Window {
electron: ElectronAPI
api: unknown
}
}