gerbil/src/types/ipc.d.ts

12 lines
311 B
TypeScript

export type IPCChannel =
| 'download-progress'
| 'install-dir-changed'
| 'versions-updated'
| 'kobold-output';
export interface IPCChannelPayloads {
'download-progress': [progress: number];
'install-dir-changed': [newPath: string];
'versions-updated': [];
'kobold-output': [message: string];
}