added InsertedTextRun and DeletedTextRun for Revision Tracking

This commit is contained in:
Thomas Jansen
2020-09-24 10:24:00 +02:00
parent 2adfe532dd
commit 09db2c528a
5 changed files with 158 additions and 0 deletions

View File

@ -3,6 +3,7 @@ import { FootnoteReferenceRun } from "file/footnotes/footnote/run/reference-run"
import { IXmlableObject, XmlComponent } from "file/xml-components";
import { File } from "../file";
import { InsertedTextRun, DeletedTextRun } from "../track-revision";
import { PageBreak } from "./formatting/page-break";
import { Bookmark, HyperlinkRef } from "./links";
import { IParagraphPropertiesOptions, ParagraphProperties } from "./properties";
@ -19,6 +20,8 @@ export interface IParagraphOptions extends IParagraphPropertiesOptions {
| SequentialIdentifier
| FootnoteReferenceRun
| HyperlinkRef
| InsertedTextRun
| DeletedTextRun
)[];
}