s3-cli-js
Version:
A TypeScript-based npm package that replaces AWS CLI for S3 operations using presigned URLs
10 lines • 364 B
TypeScript
/**
* Copy files/objects command implementation
*/
import { S3ClientWrapper } from '../s3-client';
import { CopyOptions } from '../types';
/**
* Copy files between local filesystem and S3
*/
export declare function copyCommand(client: S3ClientWrapper, source: string, destination: string, options?: CopyOptions): Promise<void>;
//# sourceMappingURL=cp.d.ts.map