import { PSEditorImpl } from '../pseditor-impl'; import { IPSCheckBox } from './ipscheck-box'; export class PSCheckBoxImpl extends PSEditorImpl implements IPSCheckBox { get cls(): string { return 'PSCheckBoxImpl'; } instanceof(cls: string): boolean { if (cls == 'control.editor.IPSCheckBox') return true; return super.instanceof(cls); } }