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';
}