| 40 | } |
| 41 | |
| 42 | export interface BgEngine { |
| 43 | readonly name: 'tmux' | 'detached' |
| 44 | /** Whether the engine provides a TTY for interactive REPL input. */ |
| 45 | readonly supportsInteractiveInput: boolean |
| 46 | available(): Promise<boolean> |
| 47 | start(opts: BgStartOptions): Promise<BgStartResult> |
| 48 | attach(session: SessionEntry): Promise<void> |
| 49 | } |
no outgoing calls
no test coverage detected