2023-08-01 11:02:01 -04:00
|
|
|
import { ArtifactClient, DefaultArtifactClient} from './internal/artifact-client'
|
|
|
|
|
import { UploadOptions } from './internal/upload-options'
|
|
|
|
|
import { UploadResponse } from './internal/upload-response'
|
2020-03-12 14:50:27 +01:00
|
|
|
|
2023-08-01 11:02:01 -04:00
|
|
|
/**
|
|
|
|
|
* Exported functionality that we want to expose for any users of @actions/artifact
|
|
|
|
|
*/
|
2020-03-12 14:50:27 +01:00
|
|
|
export {
|
|
|
|
|
ArtifactClient,
|
2023-08-01 11:02:01 -04:00
|
|
|
UploadOptions,
|
|
|
|
|
UploadResponse,
|
2020-03-12 14:50:27 +01:00
|
|
|
}
|
2020-02-11 09:49:46 -05:00
|
|
|
|
|
|
|
|
export function create(): ArtifactClient {
|
|
|
|
|
return DefaultArtifactClient.create()
|
|
|
|
|
}
|