import { IPSAppDEMobTabExplorerView } from './ipsapp-demob-tab-explorer-view'; import { PSAppDETabExplorerViewImpl } from './psapp-detab-explorer-view-impl'; export class PSAppDEMobTabExplorerViewImpl extends PSAppDETabExplorerViewImpl implements IPSAppDEMobTabExplorerView { get enablePullDownRefresh(): boolean { return this.M.enablePullDownRefresh; } get cls(): string { return 'PSAppDEMobTabExplorerViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEMobTabExplorerView' || cls == 'app.view.IPSAppDEMobView' || cls == 'app.view.IPSAppMobView') return true; return super.instanceof(cls); } }