File tree Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -4987,7 +4987,7 @@ interface FileReader extends EventTarget {
4987
4987
readAsArrayBuffer(blob: Blob): void;
4988
4988
readAsBinaryString(blob: Blob): void;
4989
4989
readAsDataURL(blob: Blob): void;
4990
- readAsText(blob: Blob, label ?: string): void;
4990
+ readAsText(blob: Blob, encoding ?: string): void;
4991
4991
readonly DONE: number;
4992
4992
readonly EMPTY: number;
4993
4993
readonly LOADING: number;
Original file line number Diff line number Diff line change @@ -1074,7 +1074,7 @@ interface FileReader extends EventTarget {
1074
1074
readAsArrayBuffer ( blob : Blob ) : void ;
1075
1075
readAsBinaryString ( blob : Blob ) : void ;
1076
1076
readAsDataURL ( blob : Blob ) : void ;
1077
- readAsText ( blob : Blob , label ?: string ) : void ;
1077
+ readAsText ( blob : Blob , encoding ?: string ) : void ;
1078
1078
readonly DONE : number ;
1079
1079
readonly EMPTY : number ;
1080
1080
readonly LOADING : number ;
@@ -1096,7 +1096,7 @@ interface FileReaderSync {
1096
1096
readAsArrayBuffer ( blob : Blob ) : ArrayBuffer ;
1097
1097
readAsBinaryString ( blob : Blob ) : string ;
1098
1098
readAsDataURL ( blob : Blob ) : string ;
1099
- readAsText ( blob : Blob , label ?: string ) : string ;
1099
+ readAsText ( blob : Blob , encoding ?: string ) : string ;
1100
1100
}
1101
1101
1102
1102
declare var FileReaderSync : {
Original file line number Diff line number Diff line change 1825
1825
"type" : " ProgressEvent"
1826
1826
}
1827
1827
]
1828
+ },
1829
+ "methods" : {
1830
+ "method" : {
1831
+ "readAsText" : {
1832
+ "name" : " readAsText" ,
1833
+ "override-signatures" : [
1834
+ " readAsText(blob: Blob, encoding?: string): void"
1835
+ ]
1836
+ }
1837
+ }
1838
+ }
1839
+ },
1840
+ "FileReaderSync" : {
1841
+ "name" : " FileReaderSync" ,
1842
+ "methods" : {
1843
+ "method" : {
1844
+ "readAsText" : {
1845
+ "name" : " readAsText" ,
1846
+ "override-signatures" : [
1847
+ " readAsText(blob: Blob, encoding?: string): string"
1848
+ ]
1849
+ }
1850
+ }
1828
1851
}
1829
1852
},
1830
1853
"MediaList" : {
You can’t perform that action at this time.
0 commit comments