10 lines
289 B
TypeScript
10 lines
289 B
TypeScript
|
|
import type { OpencodeClient } from "./constants"
|
||
|
|
import type { ConcurrencyManager } from "./concurrency"
|
||
|
|
import type { TaskStateManager } from "./state"
|
||
|
|
|
||
|
|
export interface ResultHandlerContext {
|
||
|
|
client: OpencodeClient
|
||
|
|
concurrencyManager: ConcurrencyManager
|
||
|
|
state: TaskStateManager
|
||
|
|
}
|