UNPKG

devexpress-richedit

Version:

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

10 lines (9 loc) 476 B
import { Section } from '../../../section/section'; import { ContentInsertedSubDocumentChange } from '../../change-base'; import { ModelChangeType } from '../../enums'; export declare class SectionInsertedSubDocumentChange extends ContentInsertedSubDocumentChange { section: Section; sectionIndex: number; readonly type = ModelChangeType.SectionInserted; constructor(subDocumentId: number, position: number, section: Section, sectionIndex: number); }