20 lines
518 B
TypeScript
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 {};
|