@actions/artifact package (#304)

* Initial commit for @actions/artifact package
This commit is contained in:
Konrad Pabjan
2020-02-11 09:49:46 -05:00
committed by GitHub
parent 0ecc141d4e
commit 6cbb8e9bc8
19 changed files with 1802 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import {ArtifactClient, DefaultArtifactClient} from './internal-artifact-client'
export {ArtifactClient}
/**
* Constructs an ArtifactClient
*/
export function create(): ArtifactClient {
return DefaultArtifactClient.create()
}