import { IPSLayoutPos } from './ipslayout-pos'; import { IPSModelObject } from '../../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSLayoutItem */ export interface IPSLayoutItem extends IPSModelObject { /** * 布局位置 * * @type {IPSLayoutPos} */ getPSLayoutPos(): IPSLayoutPos | null; /** * 布局位置 * * @type {IPSLayoutPos} */ get psLayoutPos(): IPSLayoutPos | null; /** * 布局位置(必须存在) * * @type {IPSLayoutPos} */ getPSLayoutPosMust(): IPSLayoutPos; } //# sourceMappingURL=ipslayout-item.d.ts.map