Files
toolkit/packages/artifact/src/artifact.ts
T

9 lines
275 B
TypeScript
Raw Normal View History

2023-12-06 04:00:07 +00:00
import {ArtifactClient, DefaultArtifactClient} from './internal/client'
export * from './internal/shared/interfaces'
export * from './internal/shared/errors'
2023-12-06 04:00:07 +00:00
export * from './internal/client'
2023-12-06 04:00:07 +00:00
const client: ArtifactClient = new DefaultArtifactClient()
export default client