UNPKG

@robotlegsjs/core

Version:

An architecture-based IoC framework for JavaScript/TypeScript

14 lines (13 loc) 329 B
/** * Robotlegs object lifecycle state */ export declare class LifecycleState { static UNINITIALIZED: string; static INITIALIZING: string; static ACTIVE: string; static SUSPENDING: string; static SUSPENDED: string; static RESUMING: string; static DESTROYING: string; static DESTROYED: string; }