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

6 lines
281 B
TypeScript

import type { RunOptions } from "./types";
import type { OhMyOpenCodeConfig } from "../../config";
type EnvVars = Record<string, string | undefined>;
export declare const resolveRunAgent: (options: RunOptions, pluginConfig: OhMyOpenCodeConfig, env?: EnvVars) => string;
export {};