12 lines
348 B
TypeScript
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>;
|
|
};
|