need dist for plugin import
Signed-off-by: Dmytro Stanchiev <git@dmytros.dev>
This commit is contained in:
28
dist/ralph-loop/ralph-loop-event-handler.d.ts
vendored
Normal file
28
dist/ralph-loop/ralph-loop-event-handler.d.ts
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import type { PluginInput } from "@opencode-ai/plugin";
|
||||
import type { RalphLoopOptions, RalphLoopState } from "./types";
|
||||
type SessionRecovery = {
|
||||
isRecovering: (sessionID: string) => boolean;
|
||||
markRecovering: (sessionID: string) => void;
|
||||
clear: (sessionID: string) => void;
|
||||
};
|
||||
type LoopStateController = {
|
||||
getState: () => RalphLoopState | null;
|
||||
clear: () => boolean;
|
||||
incrementIteration: () => RalphLoopState | null;
|
||||
setSessionID: (sessionID: string) => RalphLoopState | null;
|
||||
};
|
||||
type RalphLoopEventHandlerOptions = {
|
||||
directory: string;
|
||||
apiTimeoutMs: number;
|
||||
getTranscriptPath: (sessionID: string) => string | undefined;
|
||||
checkSessionExists?: RalphLoopOptions["checkSessionExists"];
|
||||
sessionRecovery: SessionRecovery;
|
||||
loopState: LoopStateController;
|
||||
};
|
||||
export declare function createRalphLoopEventHandler(ctx: PluginInput, options: RalphLoopEventHandlerOptions): ({ event }: {
|
||||
event: {
|
||||
type: string;
|
||||
properties?: unknown;
|
||||
};
|
||||
}) => Promise<void>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user