mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
12 lines
227 B
TypeScript
12 lines
227 B
TypeScript
export type Platform = "win32" | "darwin" | "linux"
|
|
|
|
export interface ElectronInterface {
|
|
desktop: true,
|
|
platform: Platform
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
electronInterface: ElectronInterface
|
|
}
|
|
} |