Add accessor to getter and setters
This commit is contained in:
@ -49,7 +49,7 @@ export class Body extends XmlComponent {
|
||||
this.root.push(component);
|
||||
}
|
||||
|
||||
get DefaultSection(): SectionProperties {
|
||||
public get DefaultSection(): SectionProperties {
|
||||
return this.defaultSection;
|
||||
}
|
||||
|
||||
|
@ -86,7 +86,7 @@ export class SectionProperties extends XmlComponent {
|
||||
this.options = mergedOptions;
|
||||
}
|
||||
|
||||
get Options(): SectionPropertiesOptions {
|
||||
public get Options(): SectionPropertiesOptions {
|
||||
return this.options;
|
||||
}
|
||||
}
|
||||
|
@ -57,7 +57,7 @@ export class Document extends XmlComponent {
|
||||
return table;
|
||||
}
|
||||
|
||||
get Body(): Body {
|
||||
public get Body(): Body {
|
||||
return this.body;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user