rx-store-core
Version:
A Rxjs and Immutable based Type-safe state management tool
10 lines (9 loc) • 401 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AsyncStates = void 0;
var AsyncStates;
(function (AsyncStates) {
AsyncStates[AsyncStates["FULLFILLED"] = 0] = "FULLFILLED";
AsyncStates[AsyncStates["ERROR"] = 1] = "ERROR";
AsyncStates[AsyncStates["PENDING"] = 2] = "PENDING";
})(AsyncStates = exports.AsyncStates || (exports.AsyncStates = {}));