UNPKG

@morodomi/ait3

Version:

AIT³ Development Platform - AI + Ticket + Test + Tool driven development methodology

9 lines (8 loc) 333 B
import { Command } from 'commander'; import type { CLIResult, Services } from '../../common/types.js'; export interface InstallHooksArgs { targetDir?: string; force?: boolean; } export declare function installHooks(args: InstallHooksArgs, _services: Services): Promise<CLIResult>; export declare const hooksCommand: Command;