Interface ApplicationLifecycle

interface ApplicationLifecycle {
    beforeClose?: HookFunction;
    configDidLoad?: HookFunction;
    configWillLoad?: HookFunction;
    didLoad?: HookFunction;
    didReady?: HookFunction;
    willReady?: HookFunction;
}

Properties

beforeClose?: HookFunction
configDidLoad?: HookFunction
configWillLoad?: HookFunction
didLoad?: HookFunction
didReady?: HookFunction
willReady?: HookFunction