import { IPSTextArea } from './ipstext-area'; import { PSTextEditorImpl } from './pstext-editor-impl'; export class PSTextAreaImpl extends PSTextEditorImpl implements IPSTextArea { get cls(): string { return 'PSTextAreaImpl'; } instanceof(cls: string): boolean { if (cls == 'control.editor.IPSTextArea') return true; return super.instanceof(cls); } }