askeroo
Version:
A modern CLI prompt library with flow control, history navigation, and conditional prompts
8 lines • 321 B
TypeScript
import type { StreamState } from "./types.js";
export interface StreamStoreState {
streams: Map<string, StreamState>;
revision: number;
}
export declare const streamStore: import("../../core.js").Store<StreamStoreState>;
export declare function clearStreamStore(): void;
//# sourceMappingURL=stream-store.d.ts.map