1
0
Fork 0

Fix tsc error

pull/1495/head
Konrad Pabjan 2023-08-17 13:57:35 -04:00
parent bd41eaf093
commit 22298b02f4
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import { import {
DownloadSingleArtifactOptions, DownloadArtifactOptions,
DownloadArtifactResponse DownloadArtifactResponse
} from '../shared/interfaces' } from '../shared/interfaces'
@ -8,7 +8,7 @@ export async function downloadArtifact(
repositoryOwner: string, repositoryOwner: string,
repositoryName: string, repositoryName: string,
token: string, token: string,
options?: DownloadSingleArtifactOptions options?: DownloadArtifactOptions
): Promise<DownloadArtifactResponse> { ): Promise<DownloadArtifactResponse> {
throw new Error('Not implemented') throw new Error('Not implemented')
} }