import { IPSModelObject } from '../../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSChartPosition */ export interface IPSChartPosition extends IPSModelObject { /** * 下方间隔 * @type {IModel} */ bottom: IModel; /** * 高度 * @type {IModel} */ height: IModel; /** * 左侧间隔 * @type {IModel} */ left: IModel; /** * 右侧间隔 * @type {IModel} */ right: IModel; /** * 上方间隔 * @type {IModel} */ top: IModel; /** * 宽度 * @type {IModel} */ width: IModel; }