Files
oh-my-opencode/dist/hooks/tasks-todowrite-disabler/hook.d.ts
T
2026-03-14 04:56:50 +00:00

15 lines
402 B
TypeScript

export interface TasksTodowriteDisablerConfig {
experimental?: {
task_system?: boolean;
};
}
export declare function createTasksTodowriteDisablerHook(config: TasksTodowriteDisablerConfig): {
"tool.execute.before": (input: {
tool: string;
sessionID: string;
callID: string;
}, _output: {
args: Record<string, unknown>;
}) => Promise<void>;
};