import App from './app'; import { ActionAfterEventArg } from '@mjcloud/redux'; import { IAppState, IAppBackParams, IAppRefreshParams, AppStoreActionType, IAppInitialStateParams, IAppUpdateAppInfoParams } from './typings'; export default class AppExtendStore { protected instance: App; constructor(instance: App); handleInitialStateAfter(e: ActionAfterEventArg): void; handleRefreshAfter(e: ActionAfterEventArg): void; handleBackAfter(e: ActionAfterEventArg): void; handleUpdateAppInfoAfter(e: ActionAfterEventArg): Promise; private init; private back; }