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

15 lines
313 B
TypeScript
Raw Normal View History

2016-03-31 23:01:20 +01:00
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";
}
}