File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5322,7 +5322,7 @@ interface FileReader extends EventTarget {
5322
5322
readAsArrayBuffer(blob: Blob): void;
5323
5323
readAsBinaryString(blob: Blob): void;
5324
5324
readAsDataURL(blob: Blob): void;
5325
- readAsText(blob: Blob, label ?: string): void;
5325
+ readAsText(blob: Blob, encoding ?: string): void;
5326
5326
readonly DONE: number;
5327
5327
readonly EMPTY: number;
5328
5328
readonly LOADING: number;
Original file line number Diff line number Diff line change @@ -950,7 +950,7 @@ interface FileReader extends EventTarget {
950
950
readAsArrayBuffer ( blob : Blob ) : void ;
951
951
readAsBinaryString ( blob : Blob ) : void ;
952
952
readAsDataURL ( blob : Blob ) : void ;
953
- readAsText ( blob : Blob , label ?: string ) : void ;
953
+ readAsText ( blob : Blob , encoding ?: string ) : void ;
954
954
readonly DONE : number ;
955
955
readonly EMPTY : number ;
956
956
readonly LOADING : number ;
@@ -972,7 +972,7 @@ interface FileReaderSync {
972
972
readAsArrayBuffer ( blob : Blob ) : ArrayBuffer ;
973
973
readAsBinaryString ( blob : Blob ) : string ;
974
974
readAsDataURL ( blob : Blob ) : string ;
975
- readAsText ( blob : Blob , label ?: string ) : string ;
975
+ readAsText ( blob : Blob , encoding ?: string ) : string ;
976
976
}
977
977
978
978
declare var FileReaderSync : {
You can’t perform that action at this time.
0 commit comments