Files
oh-my-opencode/dist/hooks/auto-slash-command/processed-command-store.d.ts
T
2026-03-14 04:56:50 +00:00

8 lines
258 B
TypeScript

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