refactored out xml components into multiple files

This commit is contained in:
Dolan Miu
2016-05-20 00:40:31 +01:00
parent 606e03d156
commit 37ac9f97a4
6 changed files with 167 additions and 157 deletions

View File

@ -0,0 +1,11 @@
export abstract class BaseXmlComponent {
protected rootKey: string;
constructor(rootKey: string) {
this.rootKey = rootKey;
}
abstract replaceKey(): void;
clearVariables(): void {
};
}