s3-cli-js
Version:
A TypeScript-based npm package that replaces AWS CLI for S3 operations using presigned URLs
15 lines • 401 B
TypeScript
/**
* Remove S3 objects command implementation
*/
import { S3ClientWrapper } from '../s3-client';
export interface RmOptions {
recursive?: boolean;
dryRun?: boolean;
include?: string[];
exclude?: string[];
}
/**
* Remove S3 objects
*/
export declare function removeCommand(client: S3ClientWrapper, path: string, options?: RmOptions): Promise<void>;
//# sourceMappingURL=rm.d.ts.map