Files
oh-my-opencode/dist/cli/run/runner.d.ts
T
2026-03-14 04:56:50 +00:00

6 lines
311 B
TypeScript

import type { RunOptions } from "./types";
import { resolveRunAgent } from "./agent-resolver";
export { resolveRunAgent };
export declare function waitForEventProcessorShutdown(eventProcessor: Promise<void>, timeoutMs?: number): Promise<void>;
export declare function run(options: RunOptions): Promise<number>;