/**
* @file This file contains the `FileType` enumeration.
* @author Thorsten Kummerow <thorsten@textcontrol.com>
*/
'use strict';
/**
* Possible file types the browser can request.
*/
var FileType = Object.freeze({
Document: 0,
Image: 1,
DataBase: 2
}); // FileType
module.exports = FileType;