import { IPSLayout } from './ipslayout'; /** * * 继承父接口类型值[TABLE_12COL,TABLE_24COL] * @export * @interface IPSGridLayout */ export interface IPSGridLayout extends IPSLayout { /** * 子成员默认列数量(大型) * @type {number} */ childColLG: number; /** * 子成员默认列数量(中型) * @type {number} */ childColMD: number; /** * 子成员默认列数量(小型) * @type {number} */ childColSM: number; /** * 子成员默认列数量(极小) * @type {number} */ childColXS: number; /** * 列数量 * @type {number} */ columnCount: number; /** * 启用12列转24列布局 * @type {boolean} * @default false */ enableCol12ToCol24: boolean; } //# sourceMappingURL=ipsgrid-layout.d.ts.map