mirror of
https://github.com/actions/download-artifact.git
synced 2025-08-22 00:20:17 +00:00
9 lines
145 B
TypeScript
9 lines
145 B
TypeScript
export enum Inputs {
|
|
Name = 'name',
|
|
Path = 'path',
|
|
WaitTimeout = 'wait-timeout'
|
|
}
|
|
export enum Outputs {
|
|
DownloadPath = 'download-path'
|
|
}
|