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