devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 444 B
JavaScript
import { BookmarkCollection } from '../../model-api/collections/bookmark-collection';
import { BookmarkClientApi } from '../bookmark';
export class BookmarkCollectionClientApi extends BookmarkCollection {
_core;
constructor(core, subDocument) {
super(core, subDocument);
this._core = core;
}
_getItem(coreItem) {
return new BookmarkClientApi(this._core, this._subDocument, coreItem);
}
}