UNPKG

ngx-quill

Version:

Angular components for the easy use of the QuillJS richt text editor.

18 lines (17 loc) 1.23 kB
import { DomSanitizer, SafeHtml } from '@angular/platform-browser'; import { QuillService } from './quill.service'; import { OnChanges, SimpleChanges } from '@angular/core'; import * as i0 from "@angular/core"; export declare class QuillViewHTMLComponent implements OnChanges { private sanitizer; protected service: QuillService; readonly content: import("@angular/core").InputSignal<string>; readonly theme: import("@angular/core").InputSignal<string>; readonly sanitize: import("@angular/core").InputSignal<boolean>; readonly innerHTML: import("@angular/core").WritableSignal<SafeHtml>; readonly themeClass: import("@angular/core").WritableSignal<string>; constructor(sanitizer: DomSanitizer, service: QuillService); ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration<QuillViewHTMLComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<QuillViewHTMLComponent, "quill-view-html", never, { "content": { "alias": "content"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "sanitize": { "alias": "sanitize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>; }