import { IPSMDropDownList } from './ipsmdrop-down-list'; import { PSDropDownListImpl } from './psdrop-down-list-impl'; export class PSMDropDownListImpl extends PSDropDownListImpl implements IPSMDropDownList { get singleSelect(): boolean { return this.M.singleSelect; } get cls(): string { return 'PSMDropDownListImpl'; } instanceof(cls: string): boolean { if (cls == 'control.editor.IPSMDropDownList') return true; return super.instanceof(cls); } }