UNPKG

devexpress-richedit

Version:

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

9 lines (8 loc) 445 B
import { Paragraph } from '../../../paragraph/paragraph'; import { ContentInsertedSubDocumentChange } from '../../change-base'; import { ModelChangeType } from '../../enums'; export declare class ParagraphInsertedSubDocumentChange extends ContentInsertedSubDocumentChange { paragraph: Paragraph; readonly type = ModelChangeType.ParagraphInserted; constructor(subDocumentId: number, position: number, paragraph: Paragraph); }