import { IPSAppDEMobCustomView } from './ipsapp-demob-custom-view'; import { PSAppDECustomViewImpl } from './psapp-decustom-view-impl'; export class PSAppDEMobCustomViewImpl extends PSAppDECustomViewImpl implements IPSAppDEMobCustomView { get enablePullDownRefresh(): boolean { return this.M.enablePullDownRefresh; } get cls(): string { return 'PSAppDEMobCustomViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDEMobCustomView' || cls == 'app.view.IPSAppMobView') return true; return super.instanceof(cls); } }