/** * Sync Status Utilities * * Get sync status of tickets and progress files */ export interface TicketStatus { ticketKey: string; status: "up-to-date" | "out-of-date" | "missing"; progressFilePath?: string; lastModified?: Date; jiraUpdated?: Date; } export interface SyncStatus { tickets: TicketStatus[]; summary: { total: number; upToDate: number; outOfDate: number; missing: number; }; } /** * Get sync status for all tickets */ export declare function getSyncStatus(baseDir?: string): Promise; /** * Get sync status for specific ticket */ export declare function getTicketStatus(ticketKey: string, baseDir?: string): Promise; //# sourceMappingURL=status.d.ts.map