Skip to content

Commit

Permalink
[jszip] add string output type
Browse files Browse the repository at this point in the history
  • Loading branch information
ffflorian committed Dec 21, 2019
1 parent a98cca8 commit 4ecac78
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions types/jszip/index.d.ts
@@ -1,6 +1,8 @@
// Type definitions for JSZip 3.1
// Project: http://stuk.github.com/jszip/, https://github.com/stuk/jszip
// Definitions by: mzeiher <https://github.com/mzeiher>, forabi <https://github.com/forabi>
// Definitions by: mzeiher <https://github.com/mzeiher>
// forabi <https://github.com/forabi>
// Florian Keller <https://github.com/ffflorian>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

Expand All @@ -15,7 +17,7 @@ interface JSZipSupport {

type Compression = 'STORE' | 'DEFLATE';

interface Metadata {
interface Metadata {
percent: number;
currentFile: string;
}
Expand All @@ -37,6 +39,7 @@ interface InputByType {
interface OutputByType {
base64: string;
text: string;
string: string;
binarystring: string;
array: number[];
uint8array: Uint8Array;
Expand Down

0 comments on commit 4ecac78

Please sign in to comment.