UNPKG

devexpress-richedit

Version:

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

14 lines (13 loc) 338 B
export class Collection { _processor; 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; } }