Files
docx-js/ts/docx/document.ts
2016-03-28 03:55:33 +01:00

11 lines
149 B
TypeScript

export class Document {
private body: string;
constructor() {
this.body = "ggg";
}
test() {
return "hello";
}
}