mirror of
https://github.com/lone-cloud/gerbil
synced 2026-06-03 19:54:44 -07:00
18 lines
494 B
TypeScript
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];
|
|
}
|