0.1.6 • Published 6 months ago

@types/s3-download-stream v0.1.6

Weekly downloads
57
License
MIT
Repository
github
Last release
6 months ago

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.

index.d.ts

// Type definitions for s3-download-stream 0.1
// Project: https://github.com/jb55/s3-download-stream
// Definitions by: Caleb Everett <https://github.com/everettcaleb>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node" />

import { Readable } from "stream";
import { S3 } from "aws-sdk";

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.

0.1.4

8 months ago

0.1.6

6 months ago

0.1.5

7 months ago

0.1.3

1 year ago

0.1.2

2 years ago

0.1.1

3 years ago

0.1.0

6 years ago