devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
9 lines (8 loc) • 367 B
JavaScript
import * as richEdit from './rich-edit';
import * as events from './events';
import * as options from './options';
const DevExpress = window.DevExpress = window.DevExpress || {};
DevExpress.RichEdit = Object.assign(Object.assign(Object.assign({}, richEdit), events), options);
export * from './rich-edit';
export * from './events';
export * from './options';