added return values and formatting
This commit is contained in:
@ -2,12 +2,12 @@ import {XmlComponent, Attributes} from "../xml-components";
|
||||
|
||||
export class RunProperties {
|
||||
private rPr: Array<XmlComponent>;
|
||||
|
||||
|
||||
constructor() {
|
||||
this.rPr = new Array<XmlComponent>();
|
||||
}
|
||||
|
||||
push(item: XmlComponent) {
|
||||
|
||||
push(item: XmlComponent): void {
|
||||
this.rPr.push(item);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user