UNPKG

763 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3/**
4 * Events fired from Operation
5 */
6var OperationEvent;
7(function (OperationEvent) {
8 /**
9 * Event when operation starts
10 */
11 OperationEvent["START"] = "start";
12 /**
13 * Event when operation is ready to be executed
14 */
15 OperationEvent["READY"] = "ready";
16 /**
17 * Event when operation is done
18 */
19 OperationEvent["DONE"] = "done";
20 /**
21 * Event when operation is cancelled
22 */
23 OperationEvent["CANCEL"] = "cancel";
24 /**
25 * Event when something went wrong
26 */
27 OperationEvent["ERROR"] = "error";
28})(OperationEvent = exports.OperationEvent || (exports.OperationEvent = {}));
29//# sourceMappingURL=OperationEvent.js.map
\No newline at end of file