need dist for plugin import
Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
This commit is contained in:
18
dist/ralph-loop/loop-state-controller.d.ts
vendored
Normal file
18
dist/ralph-loop/loop-state-controller.d.ts
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { RalphLoopOptions, RalphLoopState } from "./types";
|
||||
export declare function createLoopStateController(options: {
|
||||
directory: string;
|
||||
stateDir: string | undefined;
|
||||
config: RalphLoopOptions["config"] | undefined;
|
||||
}): {
|
||||
startLoop(sessionID: string, prompt: string, loopOptions?: {
|
||||
maxIterations?: number;
|
||||
completionPromise?: string;
|
||||
ultrawork?: boolean;
|
||||
strategy?: "reset" | "continue";
|
||||
}): boolean;
|
||||
cancelLoop(sessionID: string): boolean;
|
||||
getState(): RalphLoopState | null;
|
||||
clear(): boolean;
|
||||
incrementIteration(): RalphLoopState | null;
|
||||
setSessionID(sessionID: string): RalphLoopState | null;
|
||||
};
|
||||
Reference in New Issue
Block a user