| 1 | export type IPCReponse <T extends IPCReponseData = undefined> = { |
| 2 | success: boolean |
| 3 | error?: string |
| 4 | data?: T |
| 5 | } |
| 6 | |
| 7 | export type IPCReponseData = |
| 8 | // list registered |
| 9 | { |
| 10 | servers: { |
| 11 | runnerName: string |
| 12 | runnerDescription: string |
| 13 | url: string |
| 14 | }[] |
| 15 | } |