s3-cli-js
Version:
A TypeScript-based npm package that replaces AWS CLI for S3 operations using presigned URLs
12 lines • 336 B
TypeScript
/**
* Remove bucket command implementation
*/
import { S3ClientWrapper } from '../s3-client';
export interface RbOptions {
force?: boolean;
}
/**
* Remove an S3 bucket
*/
export declare function removeBucketCommand(client: S3ClientWrapper, bucketUri: string, options?: RbOptions): Promise<void>;
//# sourceMappingURL=rb.d.ts.map