import { IPSAppDEGridExplorerView, IPSGridExpBar } from '@ibizstudio/runtime'; import { GridExpViewEngine, GridExpViewInterface } from '@ibizstudio/runtime'; import { ExpViewBase } from './expview-base'; /** * 表格导航视图基类 * * @export * @class GridExpViewBase * @extends {ExpViewBase} * @implements {GridExpViewInterface} */ export declare class GridExpViewBase extends ExpViewBase implements GridExpViewInterface { /** * 视图实例 * * @memberof GridExpViewBase */ viewInstance: IPSAppDEGridExplorerView; /** * 导航栏实例 * * @memberof GridExpViewBase */ expBarInstance: IPSGridExpBar; /** * 视图引擎 * * @public * @type {Engine} * @memberof GridExpViewBase */ engine: GridExpViewEngine; /** * 引擎初始化 * * @public * @memberof GridExpViewBase */ engineInit(): void; /** * 初始化分页导航视图实例 * * @memberof GridExpViewBase */ viewModelInit(): Promise; /** * 计算目标部件所需参数 * * @param {string} [controlType] * @returns * @memberof GridExpViewBase */ computeTargetCtrlData(controlInstance: any): { targetCtrlName: string; targetCtrlParam: any; targetCtrlEvent: any; }; } //# sourceMappingURL=gridexpview-base.d.ts.map