import { IPSAppView } from '../app/view/ipsapp-view'; import { IPSSysTestCase2 } from './ipssys-test-case2'; /** * * 继承父接口类型值[APPVIEW] * @export * @interface IPSAppViewTestCase */ export interface IPSAppViewTestCase extends IPSSysTestCase2 { /** * 应用视图 * * @type {IPSAppView} */ getPSAppView(): IPSAppView | null; /** * 应用视图 * * @type {IPSAppView} */ get psAppView(): IPSAppView | null; /** * 应用视图(必须存在) * * @type {IPSAppView} */ getPSAppViewMust(): IPSAppView; }