Files
opencode-plugin-ralph-loop/dist/ralph-loop/command-arguments.d.ts
2026-04-19 19:16:31 -04: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;