mirror of
https://github.com/github/codeql-action.git
synced 2026-01-06 06:30:10 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
5 lines
526 B
TypeScript
5 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>;
|