mirror of
https://github.com/actions/download-artifact.git
synced 2025-08-21 16:10:17 +00:00
9 lines
143 B
TypeScript
9 lines
143 B
TypeScript
export enum Inputs {
|
|
Name = 'name',
|
|
Path = 'path'
|
|
Dontextract = 'dontextract'
|
|
}
|
|
export enum Outputs {
|
|
DownloadPath = 'download-path'
|
|
}
|