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