mirror of
https://github.com/actions/toolkit.git
synced 2026-08-11 00:00:28 +02:00
17 lines
443 B
TypeScript
17 lines
443 B
TypeScript
import { ArtifactClient, DefaultArtifactClient} from './internal/artifact-client'
|
|
import { UploadOptions } from './internal/upload-options'
|
|
import { UploadResponse } from './internal/upload-response'
|
|
|
|
/**
|
|
* Exported functionality that we want to expose for any users of @actions/artifact
|
|
*/
|
|
export {
|
|
ArtifactClient,
|
|
UploadOptions,
|
|
UploadResponse,
|
|
}
|
|
|
|
export function create(): ArtifactClient {
|
|
return DefaultArtifactClient.create()
|
|
}
|