mirror of https://github.com/actions/toolkit
12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
import {ArtifactClient, Client} from './internal/client'
|
|
|
|
/**
|
|
* Exported functionality that we want to expose for any users of @actions/artifact
|
|
*/
|
|
export * from './internal/shared/interfaces'
|
|
export {ArtifactClient}
|
|
|
|
export function create(): ArtifactClient {
|
|
return Client.create()
|
|
}
|