add download apis to stream zip from blob storage

This commit is contained in:
Rob Herley
2023-08-21 21:23:54 +00:00
committed by GitHub
parent 7b617c260d
commit 9b383229c1
4 changed files with 294 additions and 5 deletions

View File

@@ -1,10 +1,10 @@
import {ArtifactClient, Client} from './internal/client'
import {UploadOptions, UploadResponse} from './internal/shared/interfaces'
/**
* Exported functionality that we want to expose for any users of @actions/artifact
*/
export {ArtifactClient, UploadOptions, UploadResponse}
export * from './internal/shared/interfaces'
export {ArtifactClient}
export function create(): ArtifactClient {
return Client.create()