mirror of
https://github.com/actions/download-artifact.git
synced 2025-08-21 16:10:17 +00:00
8 lines
116 B
TypeScript
8 lines
116 B
TypeScript
export enum Inputs {
|
|
Names = 'name',
|
|
Paths = 'path'
|
|
}
|
|
export enum Outputs {
|
|
DownloadPaths = 'download-path'
|
|
}
|