| 2486 | fetcher?: Fetcher; |
| 2487 | } |
| 2488 | interface Container { |
| 2489 | get running(): boolean; |
| 2490 | start(options?: ContainerStartupOptions): void; |
| 2491 | monitor(): Promise<void>; |
| 2492 | destroy(error?: any): Promise<void>; |
| 2493 | signal(signo: number): void; |
| 2494 | getTcpPort(port: number): Fetcher; |
| 2495 | } |
| 2496 | interface ContainerStartupOptions { |
| 2497 | entrypoint?: string[]; |
| 2498 | enableInternet: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected