mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-11-19 13:31:07 +08: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()
|
|
}
|