moved to es6 module system
This commit is contained in:
11
ts/docx/document.ts
Normal file
11
ts/docx/document.ts
Normal file
@ -0,0 +1,11 @@
|
||||
export class Document {
|
||||
private body: string;
|
||||
|
||||
constructor() {
|
||||
this.body = "ggg";
|
||||
}
|
||||
|
||||
test() {
|
||||
return "hello";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user