9 lines
401 B
JavaScript
9 lines
401 B
JavaScript
|
|
var FileReaderFormatEnum;
|
||
|
|
(function (FileReaderFormatEnum) {
|
||
|
|
FileReaderFormatEnum["buffer"] = "buffer";
|
||
|
|
FileReaderFormatEnum["binaryString"] = "binaryString";
|
||
|
|
FileReaderFormatEnum["dataURL"] = "dataURL";
|
||
|
|
FileReaderFormatEnum["text"] = "text";
|
||
|
|
})(FileReaderFormatEnum || (FileReaderFormatEnum = {}));
|
||
|
|
export default FileReaderFormatEnum;
|
||
|
|
//# sourceMappingURL=FileReaderFormatEnum.js.map
|