mirror of
https://github.com/actions/download-artifact.git
synced 2025-02-07 17:11:05 +01:00
8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
export enum Inputs {
|
|
Name = 'name',
|
|
Path = 'path',
|
|
IfNoArtifact = 'if-no-artifact'
|
|
}
|
|
export enum Outputs {
|
|
DownloadPath = 'download-path'
|
|
}
|