Change docx folder to more appropriate "file" folder
This commit is contained in:
11
src/file/xml-components/base.ts
Normal file
11
src/file/xml-components/base.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { IXmlableObject } from "./xmlable-object";
|
||||
|
||||
export abstract class BaseXmlComponent {
|
||||
protected rootKey: string;
|
||||
|
||||
constructor(rootKey: string) {
|
||||
this.rootKey = rootKey;
|
||||
}
|
||||
|
||||
public abstract prepForXml(): IXmlableObject;
|
||||
}
|
Reference in New Issue
Block a user