import { IPSModelObject } from '../ipsmodel-object'; /** * * @export * @interface IPSViewLogic */ export interface IPSViewLogic extends IPSModelObject { /** * 逻辑类型 * @type {string} */ logicType: string; /** * 视图逻辑样式 * @type {string} */ viewLogicStyle: string; /** * 视图逻辑类型 * @type {string} */ viewLogicType: string; } //# sourceMappingURL=ipsview-logic.d.ts.map