forked from watson-developer-cloud/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anwesha Naskar
authored and
Anwesha Naskar
committed
Jan 31, 2018
1 parent
291bdc4
commit 92c884e
Showing
4 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,5 @@ authorization/*.js | |
index.js | ||
.nyc_output | ||
**/*.d.ts | ||
!*/blob.d.ts | ||
**/*.js.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
interface Blob { | ||
readonly size: number; | ||
readonly type: string; | ||
msClose(): void; | ||
msDetachStream(): any; | ||
slice(start?: number, end?: number, contentType?: string): Blob; | ||
} | ||
|
||
declare var Blob: { | ||
prototype: Blob; | ||
new (blobParts?: any[], options?: BlobPropertyBag): Blob; | ||
}; | ||
|
||
interface BlobPropertyBag { | ||
type?: string; | ||
endings?: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters