Add accessor to getter and setters

This commit is contained in:
Dolan
2018-08-03 02:29:58 +01:00
parent b7a4ca9c3b
commit efe7d594b0
7 changed files with 10 additions and 9 deletions

View File

@ -138,7 +138,7 @@ export class TableCell extends XmlComponent {
return para;
}
get cellProperties(): TableCellProperties {
public get cellProperties(): TableCellProperties {
return this.properties;
}
}
@ -151,7 +151,7 @@ export class TableCellProperties extends XmlComponent {
this.root.push(this.cellBorder);
}
get borders(): TableCellBorders {
public get borders(): TableCellBorders {
return this.cellBorder;
}