Files
oh-my-opencode/dist/cli/run/continuation-state.d.ts
T

10 lines
343 B
TypeScript
Raw Normal View History

export interface ContinuationState {
hasActiveBoulder: boolean;
hasActiveRalphLoop: boolean;
hasHookMarker: boolean;
hasTodoHookMarker: boolean;
hasActiveHookMarker: boolean;
activeHookMarkerReason: string | null;
}
export declare function getContinuationState(directory: string, sessionID: string): ContinuationState;