UNPKG

devexpress-richedit

Version:

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

13 lines (12 loc) 321 B
export class Collection { constructor(processor) { this._processor = processor; } get count() { return this._getCoreItems().length; } getByIndex(index) { const obj = this._getCoreItems()[index]; return obj !== undefined ? this._getItem(obj) : null; } }