chore: include pre-built dist for github install
This commit is contained in:
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
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 {};
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
export { createTaskReminderHook } from "./hook";
|
||||
Reference in New Issue
Block a user