UNPKG

@iget/editor

Version:

WYSIWYG Editor for Angular Material applications

18 lines (17 loc) 740 B
export declare type AvailableToolbarOptions = 'bold' | 'italic' | 'underline' | 'strikethrough' | 'font' | 'fontSize' | 'textColor' | 'fillColor' | 'removeFormat' | 'align' | 'indent' | 'quote' | 'orderedList' | 'unorderedList' | 'undo' | 'redo' | 'anchor'; export declare type ToolbarConfig = Array<Array<AvailableToolbarOptions>>; export interface IgetEditorConfig { editable: boolean; spellcheck: boolean; height: string | number; minHeight: string | number; width: string | number; minWidth: string | number; translate: 'yes' | 'no'; enableToolbar: boolean; showToolbar: boolean; placeholder: string; resizable: boolean; toolbarPosition: 'before' | 'after'; toolbar: ToolbarConfig; }