Files
codeql-action/node_modules/@actions/artifact/lib/internal/download-response.d.ts
2021-06-02 10:32:48 +01:00

11 lines
232 B
TypeScript

export interface DownloadResponse {
/**
* The name of the artifact that was downloaded
*/
artifactName: string;
/**
* The full Path to where the artifact was downloaded
*/
downloadPath: string;
}