UNPKG

devexpress-richedit

Version:

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

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