import { IPSAppView } from '../../app/view/ipsapp-view'; import { IPSDEFormDetail } from './ipsdeform-detail'; /** * * 继承父接口类型值[IFRAME] * @export * @interface IPSDEFormIFrame */ export interface IPSDEFormIFrame extends IPSDEFormDetail { /** * 嵌入Url路径 * @type {string} */ iFrameUrl: string; /** * 链接应用视图 * * @type {IPSAppView} */ getLinkPSAppView(): IPSAppView | null; /** * 链接应用视图 * * @type {IPSAppView} */ get linkPSAppView(): IPSAppView | null; /** * 链接应用视图(必须存在) * * @type {IPSAppView} */ getLinkPSAppViewMust(): IPSAppView; /** * 界面刷新触发表单项 * @type {string} */ refreshItems: string; }