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) 480 B
import { InvalidDocumentMode } from '../../utils/enums'; import { Log } from '../../../rich-utils/debug/logger/base-logger/log'; export class RtfImporterOptions { throwInvalidFile; invalidDocumentMode = InvalidDocumentMode.OpenAnyway; enableNotCompatibleUIFunctionality; constructor(throwInvalidFile = (reason) => { if (Log.isDebug) console.log(`LoadedFileIsIncorrect: ${reason}`); }) { this.throwInvalidFile = throwInvalidFile; } }