chore: include pre-built dist for github install
This commit is contained in:
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
import type { CommentCheckerConfig } from "../../config/schema";
|
||||
export declare function createCommentCheckerHooks(config?: CommentCheckerConfig): {
|
||||
"tool.execute.before": (input: {
|
||||
tool: string;
|
||||
sessionID: string;
|
||||
callID: string;
|
||||
}, output: {
|
||||
args: Record<string, unknown>;
|
||||
}) => Promise<void>;
|
||||
"tool.execute.after": (input: {
|
||||
tool: string;
|
||||
sessionID: string;
|
||||
callID: string;
|
||||
}, output: {
|
||||
title: string;
|
||||
output: string;
|
||||
metadata: unknown;
|
||||
}) => Promise<void>;
|
||||
};
|
||||
Reference in New Issue
Block a user