s3-cli-js
Version:
A TypeScript-based npm package that replaces AWS CLI for S3 operations using presigned URLs
14 lines • 403 B
TypeScript
/**
* List S3 buckets and objects command implementation
*/
import { S3ClientWrapper } from '../s3-client';
export interface LsOptions {
recursive?: boolean;
humanReadable?: boolean;
summarize?: boolean;
}
/**
* List S3 buckets or objects
*/
export declare function listCommand(client: S3ClientWrapper, path?: string, options?: LsOptions): Promise<void>;
//# sourceMappingURL=ls.d.ts.map