UNPKG

agora-edu-core-lb

Version:

For publishing npm package agora-edu-core (Web & Electron). Get more information from https://docs.agora.io

26 lines (25 loc) 575 B
export declare enum APaaSInternalState { Idle = "Idle", Created = "Created", Destroyed = "Destroyed" } /** * 抽象类:APaaSLifeCycle * 功能:用于描述生命周期aPaaS声明周期 */ export declare abstract class APaaSLifeCycle { /** * @internal */ protected _lifeCycleState: APaaSInternalState; /** * 状态 */ protected getLifeCycleState(): APaaSInternalState; /** * 更新状态 * @param newState */ protected updateLifeCycleState(newState: APaaSInternalState): void; constructor(); }