mirror of
https://github.com/github/codeql-action.git
synced 2026-01-02 04:30:14 +08:00
8 lines
249 B
TypeScript
8 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;
|
|
}
|