Files
oh-my-opencode/dist/hooks/claude-code-hooks/tool-input-cache.d.ts
T
2026-03-14 04:56:50 +00:00

6 lines
331 B
TypeScript

/**
* Caches tool_input from PreToolUse for PostToolUse
*/
export declare function cacheToolInput(sessionId: string, toolName: string, invocationId: string, toolInput: Record<string, unknown>): void;
export declare function getToolInput(sessionId: string, toolName: string, invocationId: string): Record<string, unknown> | null;