UNPKG

devexpress-richedit

Version:

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

11 lines (10 loc) 469 B
import { FixedInterval } from '@devexpress/utils/lib/intervals/fixed'; import { Comment } from '../../model/comments/comment'; import { ImportBookmarkInfoCore } from './import-bookmark-info-core'; export class ImportCommentInfo extends ImportBookmarkInfoCore { constructor(subDocument) { super(); this.comment = new Comment(subDocument.positionManager, new FixedInterval(0, 0)); this.comment.date = Comment.minCommentDate; } }