Files
oh-my-opencode/dist/hooks/ralph-loop/command-arguments.d.ts
T
2026-03-14 04:56:50 +00:00

9 lines
309 B
TypeScript

export type RalphLoopStrategy = "reset" | "continue";
export type ParsedRalphLoopArguments = {
prompt: string;
maxIterations?: number;
completionPromise?: string;
strategy?: RalphLoopStrategy;
};
export declare function parseRalphLoopArguments(rawArguments: string): ParsedRalphLoopArguments;