added return values and formatting

This commit is contained in:
Dolan Miu
2016-03-30 04:32:51 +01:00
parent 9e8fd9739d
commit 26f30b06d2
6 changed files with 16 additions and 16 deletions

View File

@ -1,3 +1,3 @@
export class Body { export class Body {
} }

View File

@ -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);
} }
} }

View File

@ -1,3 +1,3 @@
export class Row { export class Row {
} }

View File

@ -2,12 +2,12 @@ import {XmlComponent, Attributes} from "../xml-components";
export class RunProperties { export class RunProperties {
private rPr: Array<XmlComponent>; private rPr: Array<XmlComponent>;
constructor() { constructor() {
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);
} }
} }

View File

@ -1,3 +1,3 @@
export class Table { export class Table {
} }

View File

@ -1,3 +1,3 @@
export class Text { export class Text {
} }