UNPKG

@ngx-tiny/quill-editor

Version:

![minzipped size](https://img.shields.io/bundlephobia/minzip/@ngx-tiny/quill-editor?style=for-the-badge) ![last commit](https://img.shields.io/github/last-commit/aavanzyl/ngx-tiny?style=for-the-badge) ![licence](https://img.shields.io/npm/l/@ngx-tiny/qu

36 lines (35 loc) 1.21 kB
import { OnInit, ElementRef, EventEmitter, SimpleChanges, OnChanges } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { NgxQuillEditorService } from './ngx-quill-editor.service'; export declare class NgxQuillEditorComponent implements OnInit, OnChanges, ControlValueAccessor { private elementRef; private readonly svc; private readonly document; quillEditor: any; editorElem: HTMLElement; _options: object; defaultModules: { toolbar: (string[] | { size: (string | boolean)[]; }[] | { list: string; }[] | { indent: string; }[])[]; }; options: object; content: any; blurred: EventEmitter<any>; focused: EventEmitter<any>; ready: EventEmitter<any>; changed: EventEmitter<any>; onModelChange: any; onModelTouched: any; constructor(elementRef: ElementRef, svc: NgxQuillEditorService, document: any); ngOnInit(): void; initQuill(): void; ngOnChanges(changes: SimpleChanges): void; writeValue(currentValue: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; }