import { IPSAppDECustomView } from './ipsapp-decustom-view'; import { PSAppDEViewImpl } from './psapp-deview-impl'; export class PSAppDECustomViewImpl extends PSAppDEViewImpl implements IPSAppDECustomView { get cls(): string { return 'PSAppDECustomViewImpl'; } instanceof(cls: string): boolean { if (cls == 'app.view.IPSAppDECustomView') return true; return super.instanceof(cls); } }