UNPKG

ngx-trumbowyg

Version:

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

13 lines (12 loc) 543 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 EditorDirective extends EditorBase { protected editorControl: NgControl; protected _config: TrumbowygOptions; protected _editor: ElementRef; options: TrumbowygOptions | null; placeholder: string | null; constructor(editorControl: NgControl, _config: TrumbowygOptions, _editor: ElementRef); }