chore: include pre-built dist for github install
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import type { SessionState, Todo } from "./types";
|
||||
export interface ContinuationProgressUpdate {
|
||||
previousIncompleteCount?: number;
|
||||
previousStagnationCount: number;
|
||||
stagnationCount: number;
|
||||
hasProgressed: boolean;
|
||||
progressSource: "none" | "todo" | "activity";
|
||||
}
|
||||
export interface SessionStateStore {
|
||||
getState: (sessionID: string) => SessionState;
|
||||
getExistingState: (sessionID: string) => SessionState | undefined;
|
||||
trackContinuationProgress: (sessionID: string, incompleteCount: number, todos?: Todo[]) => ContinuationProgressUpdate;
|
||||
resetContinuationProgress: (sessionID: string) => void;
|
||||
cancelCountdown: (sessionID: string) => void;
|
||||
cleanup: (sessionID: string) => void;
|
||||
cancelAllCountdowns: () => void;
|
||||
shutdown: () => void;
|
||||
}
|
||||
export declare function createSessionStateStore(): SessionStateStore;
|
||||
Reference in New Issue
Block a user