UNPKG

@el3um4s/ipc-for-electron-system-info

Version:

Allow the renderer to get information about the version of Electron, Chrome and NodeJS used

12 lines (11 loc) 262 B
export interface SystemInfo { chrome: string; node: string; electron: string; app: string; } export interface IsWindows { isWindows: boolean; } export declare type NameAPI = "systemInfo"; export declare type DefaultApiKey = "ipc";