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 ListLevelPropertiesCache extends HashBasedCache { copyFrom(obj) { super.copyFrom(obj); } clone() { const result = new ListLevelPropertiesCache(); result.copyFrom(this); return result; } }