gerbil/src/types/ipc.d.ts
2025-09-23 13:09:20 -07:00

18 lines
494 B
TypeScript

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