Made XmlableObject non ambient typings to fix typescript problem
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
import { IXmlableObject } from "./xmlable-object";
|
||||
|
||||
export abstract class BaseXmlComponent {
|
||||
protected rootKey: string;
|
||||
|
||||
@ -5,5 +7,5 @@ export abstract class BaseXmlComponent {
|
||||
this.rootKey = rootKey;
|
||||
}
|
||||
|
||||
public abstract prepForXml(): XmlableObject;
|
||||
public abstract prepForXml(): IXmlableObject;
|
||||
}
|
||||
|
Reference in New Issue
Block a user