import { IPSAppDEUIAction } from '@ibizstudio/runtime'; import { AppPopover, AppModal, AppDrawer } from '../utils'; import { AppDEUIAction } from './app-ui-action'; /** * 应用设计前端界面行为 * * @export * @class AppDesignFrontAction * @extends {AppDEUIAction} */ export declare class AppDesignFrontAction extends AppDEUIAction { /** * 抽屉打开 * * @type {AppDrawer} * @memberof AppDesignFrontAction */ $appdrawer: AppDrawer; /** * 模态打开 * * @type {AppModal} * @memberof AppDesignFrontAction */ $appmodal: AppModal; /** * 气泡打开 * * @type {AppPopover} * @memberof AppDesignFrontAction */ $apppopover: AppPopover; /** * 路由对象 * * @type {*} * @memberof AppDesignFrontAction */ $router: any; /** * 初始化AppFrontAction * * @memberof AppFrontAction */ constructor(opts: IPSAppDEUIAction, context?: any); /** * 执行界面行为 * * @param {any[]} args * @param {*} [context={}] * @param {*} [params={}] * @param {*} [$event] * @param {*} [xData] * @param {*} [actionParam] * @param {string} [srfParentDeName] * @param {*} [deUIService] * @return {*} * @memberof AppDesignFrontAction */ execute(args: any[], context?: any, params?: any, $event?: any, xData?: any, actionParam?: any, srfParentDeName?: string, deUIService?: any): Promise; /** * 打开视图 * * @param {*} frontPSAppView * @param {*} actionParam * @param {*} context * @param {*} args * @param {*} deUIService * @param {*} params * @param {*} $event * @param {*} data * @param {*} xData * @param {*} _args * @return {*} {Promise} * @memberof AppDesignFrontAction */ oPenView(frontPSAppView: any, actionParam: any, context: any, args: any, deUIService: any, params: any, $event: any, data: any, xData: any, _args: any): Promise; } //# sourceMappingURL=app-design-front-action.d.ts.map