UNPKG

@morodomi/ait3

Version:

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

9 lines (8 loc) 279 B
import type { Services, CLIResult } from '../../common/types.js'; export interface SquashArgs { ticketId: string; pr?: boolean; noSquash?: boolean; dryRun?: boolean; } export declare function squashPhase(args: SquashArgs, services: Services): Promise<CLIResult>;