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

20 lines
518 B
TypeScript

import type { PluginInput } from "@opencode-ai/plugin";
interface ToolExecuteInput {
tool: string;
sessionID: string;
callID: string;
}
interface ToolExecuteOutput {
output: string;
}
export declare function createTaskReminderHook(_ctx: PluginInput): {
"tool.execute.after": (input: ToolExecuteInput, output: ToolExecuteOutput) => Promise<void>;
event: ({ event }: {
event: {
type: string;
properties?: unknown;
};
}) => Promise<void>;
};
export {};