import { IPSAppDEMobGanttExplorerView } from './ipsapp-demob-gantt-explorer-view'; import { PSAppDEGanttExplorerViewImpl } from './psapp-degantt-explorer-view-impl'; export class PSAppDEMobGanttExplorerViewImpl extends PSAppDEGanttExplorerViewImpl implements IPSAppDEMobGanttExplorerView { get enablePullDownRefresh(): boolean { return this.M.enablePullDownRefresh; } get cls(): string { return 'PSAppDEMobGanttExplorerViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEMobGanttExplorerView' || cls == 'app.view.IPSAppMobView') return true; return super.instanceof(cls); } }