import { IPSSysPortlet } from './ipssys-portlet'; /** * * @export * @interface IPSSysHtmlPortlet */ export interface IPSSysHtmlPortlet extends IPSSysPortlet { /** * 内容显示模式 * @description 值模式 [门户部件HTML内容显示模式] {INNER:嵌入、 IFRAME:IFrame } * @type {( string | 'INNER' | 'IFRAME')} */ htmlShowMode: string | 'INNER' | 'IFRAME'; /** * 页面路径 * @type {string} */ pageUrl: string; }