/** * Arial Server - Repository Utilities * * Utility functions for dynamic repo provisioning with auto-clone support. */ /** * Parsed GitHub URL info */ export interface GitHubRepoInfo { host: string; owner: string; repo: string; httpsUrl: string; } /** * Parse a GitHub URL into components. * Supports both SSH and HTTPS formats. */ export declare function parseGitHubUrl(url: string): GitHubRepoInfo | null; /** * Generate a repo ID from owner and repo name. */ export declare function generateRepoId(owner: string, repo: string): string; /** * Get the local path for a dynamically cloned repo. */ export declare function getDynamicRepoPath(owner: string, repo: string): string; //# sourceMappingURL=manager.d.ts.map