devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
15 lines (14 loc) • 531 B
JavaScript
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 {
comment;
reference;
paraId;
hasReference;
constructor(subDocument) {
super();
this.comment = new Comment(subDocument.positionManager, new FixedInterval(0, 0));
this.comment.date = Comment.minCommentDate;
}
}