import { ViewContainerBase } from './view-container-base'; /** * 视图壳 * * @export * @class AppViewShell * @extends {ViewContainerBase} */ export declare class AppViewShell extends ViewContainerBase { /** * 数据变化 * * @param {*} val * @returns {*} * @memberof AppViewShell */ viewDatasChange(val: any): any; /** * 模态打开传递控制器 * * @author chitanda * @date 2021-06-06 16:06:18 * @type {*} */ modal: any; /** * 视图静态参数 * * @type {string} * @memberof AppViewShell */ staticProps: any; /** * 视图动态参数 * * @type {string} * @memberof AppViewShell */ dynamicProps: any; /** * Vue声明周期 * * @memberof AppViewShell */ created(): void; /** * 视图绘制 * * @memberof AppViewShell */ render(h: any): any; } //# sourceMappingURL=app-view-shell.d.ts.map