import { IPSSysCustomPortlet } from './ipssys-custom-portlet'; import { PSSysPortletImpl } from './pssys-portlet-impl'; export class PSSysCustomPortletImpl extends PSSysPortletImpl implements IPSSysCustomPortlet { get cls(): string { return 'PSSysCustomPortletImpl'; } instanceof(cls: string): boolean { if (cls == 'res.IPSSysCustomPortlet') return true; return super.instanceof(cls); } }