Files
oh-my-opencode/dist/hooks/auto-slash-command/processed-command-store.d.ts
T

8 lines
258 B
TypeScript
Raw Normal View History

export interface ProcessedCommandStore {
has(commandKey: string): boolean;
add(commandKey: string): void;
cleanupSession(sessionID: string): void;
clear(): void;
}
export declare function createProcessedCommandStore(): ProcessedCommandStore;