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

12 lines
348 B
TypeScript

import type { PluginInput } from "@opencode-ai/plugin";
export declare function createPrometheusMdOnlyHook(ctx: PluginInput): {
"tool.execute.before": (input: {
tool: string;
sessionID: string;
callID: string;
}, output: {
args: Record<string, unknown>;
message?: string;
}) => Promise<void>;
};