UNPKG

devexpress-richedit

Version:

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

11 lines (10 loc) 283 B
export class TranslationTablesData { constructor() { this.importMap = {}; this.exportMap = {}; } getValueOnImport(key, defaultValue) { const mlData = this.importMap[key]; return mlData ? mlData.modelValue : defaultValue; } }