| 1234567891011121314151617181920212223242526272829303132 |
- import { ElementRef, AfterViewInit, EventEmitter } from '@angular/core';
- import { ControlValueAccessor } from '@angular/forms';
- export declare const EDITOR_VALUE_ACCESSOR: any;
- export declare class Editor implements AfterViewInit, ControlValueAccessor {
- el: ElementRef;
- onTextChange: EventEmitter<any>;
- onSelectionChange: EventEmitter<any>;
- toolbar: any;
- style: any;
- styleClass: string;
- placeholder: string;
- formats: string[];
- modules: any;
- bounds: any;
- scrollingContainer: any;
- debug: string;
- onInit: EventEmitter<any>;
- value: string;
- _readonly: boolean;
- onModelChange: Function;
- onModelTouched: Function;
- quill: any;
- constructor(el: ElementRef);
- ngAfterViewInit(): void;
- writeValue(value: any): void;
- registerOnChange(fn: Function): void;
- registerOnTouched(fn: Function): void;
- getQuill(): any;
- readonly: boolean;
- }
- export declare class EditorModule {
- }
|