mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-14 10:47:56 +01:00
14 lines
263 B
TypeScript
14 lines
263 B
TypeScript
|
import { IpcRenderer } from "electron";
|
||
|
|
||
|
export interface IElectronAPI {
|
||
|
on: (command, func?) => IpcRenderer;
|
||
|
send: (command, func?) => IpcRenderer;
|
||
|
invoke: (command, func?) => any;
|
||
|
}
|
||
|
|
||
|
declare global {
|
||
|
interface Window {
|
||
|
electron: IElectronAPI;
|
||
|
}
|
||
|
}
|