8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
|
|
declare enum FileReaderFormatEnum {
|
||
|
|
buffer = "buffer",
|
||
|
|
binaryString = "binaryString",
|
||
|
|
dataURL = "dataURL",
|
||
|
|
text = "text"
|
||
|
|
}
|
||
|
|
export default FileReaderFormatEnum;
|
||
|
|
//# sourceMappingURL=FileReaderFormatEnum.d.ts.map
|