Files
docx-js/ts/docx/paragraph.ts

7 lines
114 B
TypeScript
Raw Normal View History

2016-03-28 00:53:24 +01:00
export class Paragraph {
private p: Array<string>;
constructor() {
this.p = ['stuff']
2016-03-27 02:28:47 +01:00
}
}