File tree Expand file tree Collapse file tree 2 files changed +23
-13
lines changed Expand file tree Collapse file tree 2 files changed +23
-13
lines changed Original file line number Diff line number Diff line change @@ -1886,6 +1886,23 @@ declare var HTMLCollection: {
1886
1886
new(): HTMLCollection;
1887
1887
}
1888
1888
1889
+ interface BlobPropertyBag {
1890
+ type?: string;
1891
+ endings?: string;
1892
+ }
1893
+
1894
+ interface Blob {
1895
+ type: string;
1896
+ size: number;
1897
+ msDetachStream(): any;
1898
+ slice(start?: number, end?: number, contentType?: string): Blob;
1899
+ msClose(): void;
1900
+ }
1901
+ declare var Blob: {
1902
+ prototype: Blob;
1903
+ new (blobParts?: any[], options?: BlobPropertyBag): Blob;
1904
+ }
1905
+
1889
1906
interface NavigatorID {
1890
1907
appVersion: string;
1891
1908
appName: string;
@@ -10027,18 +10044,6 @@ declare var FileReader: {
10027
10044
new(): FileReader;
10028
10045
}
10029
10046
10030
- interface Blob {
10031
- type: string;
10032
- size: number;
10033
- msDetachStream(): any;
10034
- slice(start?: number, end?: number, contentType?: string): Blob;
10035
- msClose(): void;
10036
- }
10037
- declare var Blob: {
10038
- prototype: Blob;
10039
- new(): Blob;
10040
- }
10041
-
10042
10047
interface ApplicationCache extends EventTarget {
10043
10048
status: number;
10044
10049
ondownloading: (ev: Event) => any;
Original file line number Diff line number Diff line change @@ -614,6 +614,11 @@ declare var FileReader: {
614
614
new ( ) : FileReader ;
615
615
}
616
616
617
+ interface BlobPropertyBag {
618
+ type ?: string ;
619
+ endings ?: string ;
620
+ }
621
+
617
622
interface Blob {
618
623
type : string ;
619
624
size : number ;
@@ -623,7 +628,7 @@ interface Blob {
623
628
}
624
629
declare var Blob : {
625
630
prototype : Blob ;
626
- new ( ) : Blob ;
631
+ new ( blobParts ?: any [ ] , options ?: BlobPropertyBag ) : Blob ;
627
632
}
628
633
629
634
interface MSStream {
You can’t perform that action at this time.
0 commit comments