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

12 lines
251 B
TypeScript

import { IXmlableObject } from "./xmlable-object";
export abstract class BaseXmlComponent {
protected rootKey: string;
constructor(rootKey: string) {
this.rootKey = rootKey;
}
public abstract prepForXml(): IXmlableObject;
}