1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-24 03:18:28 +02:00
upscayl/renderer/renderer.d.ts
2023-11-22 21:24:02 +05:30

15 lines
306 B
TypeScript

import { IpcRenderer } from "electron";
export interface IElectronAPI {
on: (command, func?) => IpcRenderer;
send: <T>(command, func?: T) => IpcRenderer;
invoke: (command, func?) => any;
platform: "mac" | "win" | "linux";
}
declare global {
interface Window {
electron: IElectronAPI;
}
}