added return values and formatting
This commit is contained in:
@ -8,7 +8,7 @@ export class ParagraphProperties implements XmlComponent {
|
|||||||
this.pPr.push(new Attributes());
|
this.pPr.push(new Attributes());
|
||||||
}
|
}
|
||||||
|
|
||||||
push(item: XmlComponent) {
|
push(item: XmlComponent): void {
|
||||||
this.pPr.push(item);
|
this.pPr.push(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -7,7 +7,7 @@ export class RunProperties {
|
|||||||
this.rPr = new Array<XmlComponent>();
|
this.rPr = new Array<XmlComponent>();
|
||||||
}
|
}
|
||||||
|
|
||||||
push(item: XmlComponent) {
|
push(item: XmlComponent): void {
|
||||||
this.rPr.push(item);
|
this.rPr.push(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user