| 10 | const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); |
| 11 | |
| 12 | export interface DockerState { |
| 13 | isEnabled: boolean; |
| 14 | isAvailable: boolean; |
| 15 | socketPath?: string; |
| 16 | containers: Container[]; |
| 17 | } |
| 18 | |
| 19 | export class DockerManager { |
| 20 | private api: any; |
nothing calls this directly
no outgoing calls
no test coverage detected