Files
oh-my-opencode/dist/cli/run/runner.d.ts
T

6 lines
311 B
TypeScript
Raw Normal View History

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>;