import { IPSAppDEMobPanelView } from './ipsapp-demob-panel-view'; import { PSAppDEPanelViewImpl } from './psapp-depanel-view-impl'; export class PSAppDEMobPanelViewImpl extends PSAppDEPanelViewImpl implements IPSAppDEMobPanelView { get enablePullDownRefresh(): boolean { return this.M.enablePullDownRefresh; } get cls(): string { return 'PSAppDEMobPanelViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEMobPanelView' || cls == 'app.view.IPSAppMobView') return true; return super.instanceof(cls); } }