UNPKG

@robotlegsjs/core

Version:

An architecture-based IoC framework for JavaScript/TypeScript

30 lines 1.35 kB
"use strict"; // ------------------------------------------------------------------------------ // Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. // ------------------------------------------------------------------------------ Object.defineProperty(exports, "__esModule", { value: true }); exports.LifecycleState = void 0; /** * Robotlegs object lifecycle state */ var LifecycleState = /** @class */ (function () { function LifecycleState() { } /*============================================================================*/ /* Public Static Properties */ /*============================================================================*/ LifecycleState.UNINITIALIZED = "uninitialized"; LifecycleState.INITIALIZING = "initializing"; LifecycleState.ACTIVE = "active"; LifecycleState.SUSPENDING = "suspending"; LifecycleState.SUSPENDED = "suspended"; LifecycleState.RESUMING = "resuming"; LifecycleState.DESTROYING = "destroying"; LifecycleState.DESTROYED = "destroyed"; return LifecycleState; }()); exports.LifecycleState = LifecycleState; //# sourceMappingURL=LifecycleState.js.map