mirror of
https://github.com/actions/toolkit.git
synced 2026-08-11 00:00:28 +02:00
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()
|
|
}
|