Clean up API
This commit is contained in:
@ -10,7 +10,7 @@ export abstract class BaseXmlComponent {
|
||||
|
||||
public abstract prepForXml(): IXmlableObject;
|
||||
|
||||
public get isDeleted(): boolean {
|
||||
public get IsDeleted(): boolean {
|
||||
return this.deleted;
|
||||
}
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ export abstract class XmlComponent extends BaseXmlComponent {
|
||||
const children = this.root
|
||||
.filter((c) => {
|
||||
if (c instanceof BaseXmlComponent) {
|
||||
return !c.isDeleted;
|
||||
return !c.IsDeleted;
|
||||
}
|
||||
return true;
|
||||
})
|
||||
|
Reference in New Issue
Block a user