mirror of
https://github.com/actions/toolkit.git
synced 2026-08-29 00:00:23 +02: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')
|
||
|
|
}
|