import { IPSAppView } from './ipsapp-view'; import { IPSAppViewRef } from './ipsapp-view-ref'; /** * * @export * @interface IPSAppRedirectView */ export interface IPSAppRedirectView extends IPSAppView { /** * 重定向视图引用集合 * * @type {IPSAppViewRef[]} */ getRedirectPSAppViewRefs(): IPSAppViewRef[] | null; /** * 重定向视图引用集合 * * @type {IPSAppViewRef[]} */ get redirectPSAppViewRefs(): IPSAppViewRef[] | null; findRedirectPSAppViewRef(objKey: any): IPSAppViewRef | null; }