Skip to content
This repository has been archived by the owner on Jun 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #10 from Borewit/issue-7-disableChunked-should-be-…
Browse files Browse the repository at this point in the history
…optional

Option flag disableChunked should be optional
  • Loading branch information
Borewit authored Nov 11, 2019
2 parents bcec0d5 + eba3ab6 commit 6c58d9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ export type INativeTagDict = Type.INativeTagDict;

interface IS3Options extends IOptions {
/**
* Disable chunked transfer, use conventional stream
* Flag to disable chunked transfer, use conventional HTTPS stream instead
*/
disableChunked: boolean;
disableChunked?: boolean;
}

/**
* Use S3-client to execute actual HTTP-requests
* Use S3-client to execute actual HTTP-requests.
*/
class S3Request implements IHttpClient {

Expand Down

0 comments on commit 6c58d9a

Please sign in to comment.