UNPKG

@morodomi/ait3

Version:

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

9 lines (8 loc) 487 B
import type { CLIResult } from '../../../common/types.js'; export interface ConfigOptions { cwd: string; } export declare function validateTicketsDirectory(cwd: string): Promise<CLIResult | null>; export declare function readConfig(cwd: string): Promise<Record<string, unknown>>; export declare function writeConfig(cwd: string, config: Record<string, unknown>): Promise<void>; export declare function buildTicketNotice(ticketCount: number, backendType: 'local' | 'github'): string;