11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
![]() |
export abstract class BaseXmlComponent {
|
||
|
protected rootKey: string;
|
||
|
|
||
|
constructor(rootKey: string) {
|
||
|
this.rootKey = rootKey;
|
||
|
}
|
||
|
|
||
|
abstract replaceKey(): void;
|
||
|
clearVariables(): void {
|
||
|
};
|
||
|
}
|