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) 326 B
import { HashBasedCache } from '../hash-based-cache'; export class MaskedCharacterPropertiesCache extends HashBasedCache { copyFrom(obj) { super.copyFrom(obj); } clone() { const result = new MaskedCharacterPropertiesCache(); result.copyFrom(this); return result; } }