added body
This commit is contained in:
15
ts/docx/document/index.ts
Normal file
15
ts/docx/document/index.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import {XmlComponent, Attributes} from "../xml-components";
|
||||
|
||||
export class Document {
|
||||
private document: Array<XmlComponent>;
|
||||
|
||||
constructor() {
|
||||
this.document = new Array<XmlComponent>();
|
||||
this.document.push(new Attributes({}));
|
||||
this.
|
||||
}
|
||||
|
||||
test() {
|
||||
return "hello";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user