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