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) 477 B
import { SubDocumentChangeBase } from '../../change-base'; import { ModelChangeType } from '../../enums'; export declare class FieldInsertedSubDocumentChange implements SubDocumentChangeBase { subDocumentId: number; startPosition: number; separatorPosition: number; endPosition: number; readonly type = ModelChangeType.FieldInserted; constructor(subDocumentId: number, startPosition: number, separatorPosition: number, endPosition: number); }