Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
4 lines
526 B
TypeScript
4 lines
526 B
TypeScript
import { DownloadArtifactOptions, DownloadArtifactResponse } from '../shared/interfaces';
|
|
export declare function streamExtractExternal(url: string, directory: string): Promise<void>;
|
|
export declare function downloadArtifactPublic(artifactId: number, repositoryOwner: string, repositoryName: string, token: string, options?: DownloadArtifactOptions): Promise<DownloadArtifactResponse>;
|
|
export declare function downloadArtifactInternal(artifactId: number, options?: DownloadArtifactOptions): Promise<DownloadArtifactResponse>;
|