@awayjs/core
Version:
AwayJS core classes
22 lines (21 loc) • 557 B
JavaScript
/**
* An enumeration providing values to describe the data format of parsed data.
*/
var ParserDataFormat = /** @class */ (function () {
function ParserDataFormat() {
}
/**
* Describes the format of a binary file.
*/
ParserDataFormat.BINARY = 'binary';
/**
* Describes the format of a plain text file.
*/
ParserDataFormat.PLAIN_TEXT = 'plainText';
/**
* Describes the format of an image file
*/
ParserDataFormat.IMAGE = 'image';
return ParserDataFormat;
}());
export { ParserDataFormat };