/** * AppPanelModel 部件模型 * * @export * @class AppPanelModel */ export declare class AppPanelModel { /** * 面板实例对象 * * @memberof AppPanelModel */ PanelInstance: any; /** * Creates an instance of AppPanelModel. * * @param {*} [opts={}] * @memberof AppPanelModel */ constructor(opts: any); /** * 获取name找到对应field * * @returns {any[]} * @memberof AppPanelModel */ findField(arr: Array, name: string): any; /** * 获取数据项集合 * * @returns {any[]} * @memberof AppPanelModel */ getDataItems(): any[]; } //# sourceMappingURL=app-panel-model.d.ts.map