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

Commit

Permalink
Option flag disableChunked should be optional
Browse files Browse the repository at this point in the history
Fix issue #7
  • Loading branch information
Borewit committed Nov 11, 2019
1 parent da60a9e commit eba3ab6
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 @@ -16,13 +16,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 eba3ab6

Please sign in to comment.