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