mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-11-19 12:31:06 +08:00
15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
import {
|
|
DownloadArtifactOptions,
|
|
DownloadArtifactResponse
|
|
} from '../shared/interfaces'
|
|
|
|
export async function downloadArtifact(
|
|
artifactId: number,
|
|
repositoryOwner: string,
|
|
repositoryName: string,
|
|
token: string,
|
|
options?: DownloadArtifactOptions
|
|
): Promise<DownloadArtifactResponse> {
|
|
throw new Error('Not implemented')
|
|
}
|