UNPKG

s3-cli-js

Version:

A TypeScript-based npm package that replaces AWS CLI for S3 operations using presigned URLs

13 lines 497 B
/** * Main entry point for the S3 CLI package */ export { S3ClientWrapper } from './s3-client'; export { loadAWSConfig, validateConfig } from './utils/config'; export * from './types'; export * from './utils/progress'; export { listCommand } from './commands/ls'; export { copyCommand } from './commands/cp'; export { removeCommand } from './commands/rm'; export { makeBucketCommand } from './commands/mb'; export { removeBucketCommand } from './commands/rb'; //# sourceMappingURL=index.d.ts.map