UNPKG

cabbie-sync

Version:
48 lines (40 loc) 1.56 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ApplicationCacheStatus = undefined; var _flowRuntime = require("flow-runtime"); var _flowRuntime2 = _interopRequireDefault(_flowRuntime); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * * This file is generated automatically, run npm run build to re-generate. **/ var ApplicationCacheStatus = exports.ApplicationCacheStatus = _flowRuntime2.default.type("ApplicationCacheStatus", _flowRuntime2.default.union(_flowRuntime2.default.number(0), _flowRuntime2.default.number(1), _flowRuntime2.default.number(2), _flowRuntime2.default.number(3), _flowRuntime2.default.number(4), _flowRuntime2.default.number(5))); var ApplicationCacheStatusEnum = { /* * Status of the HTML5 application cache - Uncached */ UNCACHED: _flowRuntime2.default.number(0).assert(0), /* * Status of the HTML5 application cache - Idle */ IDLE: _flowRuntime2.default.number(1).assert(1), /* * Status of the HTML5 application cache - Checking */ CHECKING: _flowRuntime2.default.number(2).assert(2), /* * Status of the HTML5 application cache - Downloading */ DOWNLOADING: _flowRuntime2.default.number(3).assert(3), /* * Status of the HTML5 application cache - Update-ready */ UPDATE_READY: _flowRuntime2.default.number(4).assert(4), /* * Status of the HTML5 application cache - Obsolete */ OBSOLETE: _flowRuntime2.default.number(5).assert(5) }; exports.default = ApplicationCacheStatusEnum;