need dist for plugin import

Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
This commit is contained in:
2026-04-19 19:16:31 -04:00
parent 3bf7c71677
commit 24f10b0d09
27 changed files with 1211 additions and 1 deletions

6
dist/ralph-loop/storage.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
import type { RalphLoopState } from "./types";
export declare function getStateFilePath(directory: string, customPath?: string): string;
export declare function readState(directory: string, customPath?: string): RalphLoopState | null;
export declare function writeState(directory: string, state: RalphLoopState, customPath?: string): boolean;
export declare function clearState(directory: string, customPath?: string): boolean;
export declare function incrementIteration(directory: string, customPath?: string): RalphLoopState | null;