(paths?: string[])
| 67 | } |
| 68 | |
| 69 | function formatWorkspaceRoots(paths?: string[]): string { |
| 70 | return paths?.length ? paths.join(', ') : '(none)' |
| 71 | } |
| 72 | |
| 73 | export class ApiMachineClient { |
| 74 | private socket!: Socket<ServerToClientEvents, ClientToServerEvents> |