ngx-trumbowyg
Version:
This an Angular wrapper for [Trumbowyg WYSIWYG editor](https://alex-d.github.io/Trumbowyg/).
24 lines (23 loc) • 577 B
TypeScript
import { CustomButton } from './custom-button';
export interface TrumbowygOptions {
prefix?: string;
lang?: string;
svgPath?: string | boolean;
hideButtonTexts?: boolean;
btns?: Array<string[]>;
semantic?: boolean;
resetCss?: boolean;
removeformatPasted?: boolean;
imageWidthModalEdit?: boolean;
autogrow?: boolean;
autogrowOnEnter?: boolean;
plugins?: {
[pluginName: string]: any;
};
btnsDef?: {
[buttonName: string]: CustomButton;
};
events?: {
[eventName: string]: () => void;
};
}