export * from "./common.ts"; export interface GithubDownloadParams { /** * The file or directory to download. * Must be of type: https://github.com/ownerName/repoName/tree/branchName/path/to/folder */ url: string; /** * Where to save the files. * If downloading a directory: download the directory inside this folder. * If downloading a file: this path is the name of the downloaded file. */ downloadPath: string; /** * If true, then log the download progress. */ log?: boolean; } /** * Download a file or a directory from a GitHub repository. */ export declare function githubDownload(params: GithubDownloadParams): Promise; export declare function killPort(port?: string): Promise;