s3-cli-js
Version:
A TypeScript-based npm package that replaces AWS CLI for S3 operations using presigned URLs
10 lines • 397 B
TypeScript
/**
* Advanced sync command implementation
*/
import { S3ClientWrapper } from '../s3-client';
import { SyncOptions } from '../types';
/**
* Advanced sync command with timestamp comparison and proper sync logic
*/
export declare function syncCommand(client: S3ClientWrapper, source: string, destination: string, options?: Partial<SyncOptions>): Promise<void>;
//# sourceMappingURL=sync.d.ts.map