UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

12 lines (11 loc) 304 B
export class RtfBaseImporter { constructor(data) { this.data = data; } get documentModel() { return this.data.documentModel; } get subDocument() { return this.data.subDocument; } applyState(states, state) { states.pop(); states.push(state); } }