repomix
Version:
A tool to pack repository contents to single file for AI consumption
6 lines (5 loc) • 401 B
TypeScript
import type { GitHubRepoInfo } from './gitRemoteParse.js';
export declare const buildGitHubArchiveUrl: (repoInfo: GitHubRepoInfo) => string;
export declare const buildGitHubMasterArchiveUrl: (repoInfo: GitHubRepoInfo) => string | null;
export declare const buildGitHubTagArchiveUrl: (_repoInfo: GitHubRepoInfo) => string | null;
export declare const checkGitHubResponse: (response: Response) => void;