update artifact module quick start

This commit is contained in:
Rob Herley
2023-12-14 15:38:49 -05:00
parent 43c63eef65
commit 11a2dd3117

View File

@@ -63,10 +63,16 @@ Import the module:
```js ```js
// ES6 module // ES6 module
import artifact from '@actions/artifact' import {DefaultArtifactClient} from '@actions/artifact'
// CommonJS // CommonJS
const {default: artifact} = require('@actions/artifact') const {DefaultArtifactClient} = require('@actions/artifact')
```
Then instantiate:
```js
const artifact = new DefaultArtifactClient()
``` ```
For a comprehensive list of classes, interfaces, functions and more, see the [generated documentation](./docs/generated/README.md). For a comprehensive list of classes, interfaces, functions and more, see the [generated documentation](./docs/generated/README.md).