export interface ReleaseInfo { tagName: string; name: string; publishedAt: string; body: string; zipballUrl: string; htmlUrl: string; } /** * 최신 릴리즈 정보 가져오기 */ export declare function getLatestRelease(): Promise; /** * 특정 버전의 릴리즈 정보 가져오기 */ export declare function getReleaseByTag(tag: string): Promise; /** * 릴리즈 다운로드 및 압축 해제 */ export declare function downloadRelease(release: ReleaseInfo): Promise; /** * 임시 다운로드 디렉토리 정리 */ export declare function cleanupDownload(downloadDir: string): Promise; //# sourceMappingURL=github.d.ts.map