Installation
npm install --save @types/s3-download-stream
Summary
This package contains type definitions for s3-download-stream (https://github.com/jb55/s3-download-stream).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/s3-download-stream.
import { Readable } from "stream";
import { S3 } from "aws-sdk2-types";
declare namespace s3Stream {
interface S3StreamDownloaderOptions {
client: S3;
concurrency?: number | undefined;
chunkSize?: string | undefined;
params: S3.GetObjectRequest;
}
}
declare function s3Stream(options: s3Stream.S3StreamDownloaderOptions): Readable;
export = s3Stream;
Additional Details
Credits
These definitions were written by Caleb Everett.