mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-14 01:22:43 +00:00
11 lines
195 B
TypeScript
11 lines
195 B
TypeScript
export enum Inputs {
|
|
Name = 'name',
|
|
Path = 'path',
|
|
GitHubToken = 'github-token',
|
|
Repository = 'repository',
|
|
RunID = 'run-id'
|
|
}
|
|
|
|
export enum Outputs {
|
|
DownloadPath = 'download-path'
|
|
}
|