import { IPSModelObject } from '../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSNavigateParam */ export interface IPSNavigateParam extends IPSModelObject { /** * 说明 * @type {string} */ desc: string; /** * 参数 * @type {string} */ key: string; /** * 值 * @type {string} */ value: string; /** * 直接值 * @type {boolean} */ rawValue: boolean; }