added return values and formatting
This commit is contained in:
@ -1,3 +1,3 @@
|
||||
export class Body {
|
||||
|
||||
}
|
||||
export class Body {
|
||||
|
||||
}
|
||||
|
@ -8,7 +8,7 @@ export class ParagraphProperties implements XmlComponent {
|
||||
this.pPr.push(new Attributes());
|
||||
}
|
||||
|
||||
push(item: XmlComponent) {
|
||||
push(item: XmlComponent): void {
|
||||
this.pPr.push(item);
|
||||
}
|
||||
}
|
@ -1,3 +1,3 @@
|
||||
export class Row {
|
||||
|
||||
}
|
||||
export class Row {
|
||||
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
export class Table {
|
||||
|
||||
}
|
||||
export class Table {
|
||||
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
export class Text {
|
||||
|
||||
}
|
||||
export class Text {
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user