arela
Version:
AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.
22 lines • 762 B
TypeScript
import type { Ticket } from "../types.js";
/**
* Parse a markdown ticket file
*/
export declare function parseMarkdownTicket(filePath: string): Promise<Partial<Ticket>>;
/**
* Parse a YAML ticket file
*/
export declare function parseYamlTicket(filePath: string): Promise<Partial<Ticket>>;
/**
* Parse a ticket from either MD or YAML format
*/
export declare function parseTicket(cwd: string, ticketId: string): Promise<Partial<Ticket>>;
/**
* Get all ticket files (both MD and YAML)
*/
export declare function getAllTicketFiles(ticketsDir: string): Promise<string[]>;
/**
* Get ticket file extension (md or yaml)
*/
export declare function getTicketFileFormat(cwd: string, ticketId: string): Promise<"md" | "yaml">;
//# sourceMappingURL=parser.d.ts.map