claudekit
Version:
CLI tools for Claude Code development workflow
12 lines • 342 B
TypeScript
export declare class HookRunner {
private hooks;
private configPath;
private debug;
constructor(configPath?: string, debug?: boolean);
run(hookName: string): Promise<number>;
private loadConfig;
}
export declare function runHook(hookName: string): Promise<{
stdout: string;
}>;
//# sourceMappingURL=runner.d.ts.map