added properties

This commit is contained in:
Dolan Miu
2016-03-28 03:55:33 +01:00
parent 7a78dacf8c
commit 611d80af6d
5 changed files with 59 additions and 16 deletions

View File

@ -1,11 +1,11 @@
export class Document {
private body: string;
constructor() {
this.body = "ggg";
}
test() {
return "hello";
}
}
export class Document {
private body: string;
constructor() {
this.body = "ggg";
}
test() {
return "hello";
}
}

View File

@ -1,7 +1,12 @@
import {P, Attributes, ParagraphProperties, Run} from "./xml-components/p";
export class Paragraph {
private p: Array<string>;
private p: Array<P>;
constructor() {
this.p = ['stuff']
constructor(text?: string) {
this.p = new Array<P>();
this.p.push(new Attributes());
this.p.push(new ParagraphProperties());
this.p.push(new Run(text));
}
}

View File

@ -0,0 +1,37 @@
export interface P {
}
export class Attributes implements P {
private _attrs: Object;
constructor() {
this._attrs = {};
}
}
export class ParagraphProperties implements P {
private pPr: Array<P>;
constructor() {
this.pPr = new Array<P>();
this.pPr.push(new Attributes());
}
}
export class Run implements P {
private r: Array<P>;
constructor(text: string) {
this.r = new Array<P>();
this.r.push(new Text(text));
}
}
export class Text implements P {
private t: string;
constructor(text: string) {
this.t = text;
}
}