Remove unnecessary method

This commit is contained in:
Dolan
2019-10-10 01:19:55 +01:00
parent b571a7550f
commit 2bb7e08ade

View File

@ -45,7 +45,7 @@ export interface IParagraphOptions {
readonly level: number; readonly level: number;
readonly custom?: boolean; readonly custom?: boolean;
}; };
readonly children?: Array<TextRun | PictureRun | Hyperlink | SymbolRun | Bookmark | PageBreak>; readonly children?: Array<TextRun | PictureRun | Hyperlink | SymbolRun | Bookmark | PageBreak | SequentialIdentifier>;
} }
export class Paragraph extends XmlComponent { export class Paragraph extends XmlComponent {
@ -167,9 +167,4 @@ export class Paragraph extends XmlComponent {
this.root.splice(1, 0, run); this.root.splice(1, 0, run);
return this; return this;
} }
public addSequentialIdentifier(identifier: string): Paragraph {
this.root.push(new SequentialIdentifier(identifier));
return this;
}
} }