5 lines
354 B
TypeScript
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;
|