Files
docx-js/ts/docx/document.ts

11 lines
201 B
TypeScript
Raw Normal View History

2016-03-28 00:53:24 +01:00
export class Document {
private body: string;
constructor() {
this.body = "ggg";
}
test() {
return "hello";
}
}