Files
docx-js/ts/docx/xml-components/base.ts

10 lines
186 B
TypeScript
Raw Normal View History

export abstract class BaseXmlComponent {
protected rootKey: string;
constructor(rootKey: string) {
this.rootKey = rootKey;
}
public abstract toXml(): object;
2017-03-08 21:49:41 +00:00
}