import { IParam } from '../../common'; import { ICtrlModel } from './i-ctrl-model'; /** * 数据关系栏部件模型接口 * * @export * @interface IDrbarModel * @extends {ICtrlModel} */ export interface IDrbarModel extends ICtrlModel { /** * @description 部件项 * @type {IParam[]} * @memberof IDrbarModel */ ctrlItems: IParam[]; }