import { IPSSysPanelUserControl } from './ipssys-panel-user-control'; import { PSSysPanelItemImpl } from './pssys-panel-item-impl'; export class PSSysPanelUserControlImpl extends PSSysPanelItemImpl implements IPSSysPanelUserControl { get ctrlParams(): IModel { return this.M.ctrlParams; } get predefinedType(): string { return this.M.predefinedType; } get cls(): string { return 'PSSysPanelUserControlImpl'; } instanceof(cls: string): boolean { if (cls == 'control.panel.IPSPanelUserControl' || cls == 'control.panel.IPSSysPanelUserControl') return true; return super.instanceof(cls); } }