UNPKG

ngx-trumbowyg

Version:

This an Angular wrapper for [Trumbowyg WYSIWYG editor](https://alex-d.github.io/Trumbowyg/).

13 lines (12 loc) 518 B
import { ElementRef } from '@angular/core'; import { NgControl } from '@angular/forms'; import { EditorBase } from '../../commons/editor-base'; import { TrumbowygOptions } from '../../configs/trumbowyg-options'; export declare class EditorComponent extends EditorBase { protected editorControl: NgControl; protected _config: TrumbowygOptions; options: TrumbowygOptions | null; placeholder: string | null; _editor: ElementRef; constructor(editorControl: NgControl, _config: TrumbowygOptions); }