import { IPSAppDEMobListExplorerView } from './ipsapp-demob-list-explorer-view'; import { PSAppDEListExplorerViewImpl } from './psapp-delist-explorer-view-impl'; export class PSAppDEMobListExplorerViewImpl extends PSAppDEListExplorerViewImpl implements IPSAppDEMobListExplorerView { get enablePullDownRefresh(): boolean { return this.M.enablePullDownRefresh; } get cls(): string { return 'PSAppDEMobListExplorerViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEMobListExplorerView' || cls == 'app.view.IPSAppMobView') return true; return super.instanceof(cls); } }