import { IPSAppDEMobChartExplorerView } from './ipsapp-demob-chart-explorer-view'; import { PSAppDEChartExplorerViewImpl } from './psapp-dechart-explorer-view-impl'; export class PSAppDEMobChartExplorerViewImpl extends PSAppDEChartExplorerViewImpl implements IPSAppDEMobChartExplorerView { get enablePullDownRefresh(): boolean { return this.M.enablePullDownRefresh; } get cls(): string { return 'PSAppDEMobChartExplorerViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEMobChartExplorerView' || cls == 'app.view.IPSAppMobView') return true; return super.instanceof(cls); } }