s3-express-zip
Version:
Download multiple objects from S3 bucket to zip archive through stream
18 lines (17 loc) • 467 B
TypeScript
declare const _default: ({ s3, s3Options, Bucket, Prefix }?: {
s3: any;
s3Options: any;
Bucket: string;
Prefix: string;
}) => Promise<void>;
export default _default;
declare const getObjectsList: (s3: any, Bucket: string, Prefix: string) => Promise<any[] | {
Key: string;
Size: number;
Bucket: string;
}[]>;
declare const getStream: (s3: any, object: {
Bucket: string;
Key: string;
}) => any;
export { getStream, getObjectsList };