@awayjs/core
Version:
AwayJS core classes
31 lines (27 loc) • 453 B
text/typescript
export class URLLoaderDataFormat {
/**
* TEXT
* @type {string}
*/
public static TEXT: string = 'text';
/**
* Variables / Value Pairs
* @type {string}
*/
public static VARIABLES: string = 'variables';
/**
*
* @type {string}
*/
public static BLOB: string = 'blob';
/**
*
* @type {string}
*/
public static ARRAY_BUFFER: string = 'arraybuffer';
/**
*
* @type {string}
*/
public static BINARY: string = 'binary';
}