/** * Project Link Helpers * * Utilities for generating GitHub, Replit, and Jira links for projects. * Used by Next.js admin UI and Replit Extension to show consistent links. */ /** * Get GitHub file URL for a project */ export declare function getGitHubFileUrl(root: string, projectKey: string, filePath: string, branch?: string): string | null; /** * Get Replit file URL for a project */ export declare function getReplitFileUrl(root: string, projectKey: string, filePath: string): string | null; /** * Get Jira project URL */ export declare function getJiraProjectUrl(root: string, projectKey: string): string | null; /** * Get all links for a project */ export declare function getProjectLinks(root: string, projectKey: string): { jira?: string; github?: string; replit?: string; }; //# sourceMappingURL=ticketMateProjectLinks.d.ts.map