ngx-quill
Version:
An angular (>= v2) component for the easy use of the QuillJS richt text editor.
14 lines (13 loc) • 495 B
TypeScript
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
import { QuillConfig } from './quill-editor.interfaces';
import { OnChanges, SimpleChanges } from '@angular/core';
export declare class QuillViewHTMLComponent implements OnChanges {
private sanitizer;
private config;
innerHTML: SafeHtml;
themeClass: string;
content: string;
theme?: string;
constructor(sanitizer: DomSanitizer, config: QuillConfig);
ngOnChanges(changes: SimpleChanges): void;
}