export {} declare global { interface Window { // Expose some Api through preload script ipcRenderer?: import('electron').IpcRenderer env?: { isElectron: boolean isEnableTitlebar: boolean isLinux: boolean isMac: boolean isWin: boolean } } } declare module 'valtio' { function useSnapshot(p: T): T }