@awayjs/core
Version:
AwayJS core classes
32 lines (31 loc) • 646 B
JavaScript
var URLLoaderDataFormat = /** @class */ (function () {
function URLLoaderDataFormat() {
}
/**
* TEXT
* @type {string}
*/
URLLoaderDataFormat.TEXT = 'text';
/**
* Variables / Value Pairs
* @type {string}
*/
URLLoaderDataFormat.VARIABLES = 'variables';
/**
*
* @type {string}
*/
URLLoaderDataFormat.BLOB = 'blob';
/**
*
* @type {string}
*/
URLLoaderDataFormat.ARRAY_BUFFER = 'arraybuffer';
/**
*
* @type {string}
*/
URLLoaderDataFormat.BINARY = 'binary';
return URLLoaderDataFormat;
}());
export { URLLoaderDataFormat };