5793b08cd9
* `@actions/artifact`: convert to an ESM module * Update the package-lock.json * Undo the GHES ignores * Fix the reference to `@actions/http-client` in the lock file * Bump `@actions/core` to `3.0.0` * Remove `jest.config.cjs` * Import `OctoKitOptions` from `@octokit/core/types` * Pull the package version from `package.json` * Workaround getting the package version for the user-agent * Fix the `archiver` import * Fix linting
9 lines
287 B
TypeScript
9 lines
287 B
TypeScript
import {ArtifactClient, DefaultArtifactClient} from './internal/client.js'
|
|
|
|
export * from './internal/shared/interfaces.js'
|
|
export * from './internal/shared/errors.js'
|
|
export * from './internal/client.js'
|
|
|
|
const client: ArtifactClient = new DefaultArtifactClient()
|
|
export default client
|