Files
web/frontend/electron.d.ts
T

12 lines
227 B
TypeScript

export type Platform = "win32" | "darwin" | "linux"
export interface ElectronInterface {
desktop: true,
platform: Platform
}
declare global {
interface Window {
electronInterface: ElectronInterface
}
}