Files
toolkit/packages/artifact/src/internal/find/get-artifact.ts
T

12 lines
284 B
TypeScript
Raw Normal View History

import {GetArtifactResponse} from '../shared/interfaces'
export async function getArtifact(
artifactName: string,
workflowRunId: number,
repositoryOwner: string,
repositoryName: string,
token: string
): Promise<GetArtifactResponse> {
throw new Error('Not implemented')
}