devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
8 lines (7 loc) • 441 B
TypeScript
import { ImportCommentInfo } from '../../../../../../common/formats/utils/import-comment-info';
import { XmlReader } from '../../../zip/xml-reader';
import { LeafElementDestination } from '../destination';
export declare abstract class CommentElementDestination extends LeafElementDestination {
processElementOpen(reader: XmlReader): Promise<void>;
protected abstract assignCommentPosition(comment: ImportCommentInfo): any;
}