import { IPSHtmlItem } from './ipshtml-item'; import { PSRawItemImplBase } from './psraw-item-impl-base'; export class PSHtmlItemImpl extends PSRawItemImplBase implements IPSHtmlItem { get content(): string { return this.M.content; } get cls(): string { return 'PSHtmlItemImpl'; } instanceof(cls: string): boolean { if (cls == 'control.rawitem.IPSHtmlItem') return true; return super.instanceof(cls); } }