Files
toolkit/packages/artifact/src/internal/download-response.ts
T

12 lines
215 B
TypeScript
Raw Normal View History

2020-02-11 09:49:46 -05:00
export interface DownloadResponse {
/**
* The name of the artifact that was downloaded
*/
artifactName: string
/**
* The full Path to where the artifact was downloaded
*/
downloadPath: string
}