Skip to content

Commit

Permalink
1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Touffy committed May 8, 2022
1 parent 8144616 commit 2dc0a7c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.5.1:

* fixed typings (last version incorrectly excluded ArrayBuffers, Blobs and strings as valid `input` types)

## 1.5.0:

* minor: added an *options* parameter to `downloadZip`.
Expand Down
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ type StreamLike = ReadableStream<Uint8Array> | AsyncIterable<BufferLike>
* @returns the exact byte length of the Zip file that would be generated by `downloadZip`. */
export declare function predictLength(files: Iterable<InputWithMeta | InputWithSizeMeta | JustMeta>): number

export declare function downloadZip(files: ForAwaitable<InputWithMeta | InputWithoutMeta>, options?: Options): Response
export declare function downloadZip(files: ForAwaitable<InputWithMeta | InputWithSizeMeta | InputWithoutMeta>, options?: Options): Response
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "client-zip",
"version": "1.5.0",
"version": "1.5.1",
"description": "A tiny and fast client-side streaming ZIP generator",
"browser": "index.js",
"module": "index.js",
Expand Down

0 comments on commit 2dc0a7c

Please sign in to comment.