refactored out xml components into multiple files
This commit is contained in:
11
ts/docx/xml-components/base.ts
Normal file
11
ts/docx/xml-components/base.ts
Normal file
@ -0,0 +1,11 @@
|
||||
export abstract class BaseXmlComponent {
|
||||
protected rootKey: string;
|
||||
|
||||
constructor(rootKey: string) {
|
||||
this.rootKey = rootKey;
|
||||
}
|
||||
|
||||
abstract replaceKey(): void;
|
||||
clearVariables(): void {
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user