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