UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

18 lines (17 loc) 317 B
export class Position { value; refCount; constructor(value) { this.value = value; this.refCount = 0; } incRefCount() { ++this.refCount; } decRefCount() { --this.refCount; } hasReference() { return this.refCount > 0; } }