(id: string, _options: { backend?: string } = {})
| 226 | dispose(id: string): Promise<void>; |
| 227 | dispose(id: string, options: { backend?: string }): Promise<void>; |
| 228 | dispose(id: string, _options: { backend?: string } = {}): Promise<void> { |
| 229 | return this.#shell.disposeExec({ id }); |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | function resumeToAfter(resume: "tail" | "full" | number | undefined): number | "tail" | undefined { |
nothing calls this directly
no test coverage detected