blob: 429c5b0ca27f73a4b2faab694b2d0c564fd3e51f [file] [log] [blame]
var exec = require('cordova/exec');
/**
* Represents a local file system.
*/
var LocalFileSystem = function() {
};
LocalFileSystem.TEMPORARY = 0; //temporary, with no guarantee of persistence
LocalFileSystem.PERSISTENT = 1; //persistent
module.exports = LocalFileSystem;