Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
7 lines
249 B
TypeScript
7 lines
249 B
TypeScript
export interface DownloadOptions {
|
|
/**
|
|
* Specifies if a folder is created for the artifact that is downloaded (contents downloaded into this folder),
|
|
* defaults to false if not specified
|
|
* */
|
|
createArtifactFolder?: boolean;
|
|
}
|