import { IPSApplicationObject } from './ipsapplication-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSAppUtilPage */ export interface IPSAppUtilPage extends IPSApplicationObject { /** * 页面路径 * @type {string} */ pageUrl: string; /** * 目标类型 * @description 值模式 [系统应用功能页面目标类型] {PAGEURL:页面路径、 APPVIEW:应用视图 } * @type {( string | 'PAGEURL' | 'APPVIEW')} */ targetType: string | 'PAGEURL' | 'APPVIEW'; }