Files
oh-my-opencode/dist/hooks/interactive-bash-session/storage.d.ts
T
2026-03-14 04:56:50 +00:00

5 lines
354 B
TypeScript

import type { InteractiveBashSessionState } from "./types";
export declare function loadInteractiveBashSessionState(sessionID: string): InteractiveBashSessionState | null;
export declare function saveInteractiveBashSessionState(state: InteractiveBashSessionState): void;
export declare function clearInteractiveBashSessionState(sessionID: string): void;