added tab and fixed italics

This commit is contained in:
Dolan Miu
2016-05-18 17:06:50 +01:00
parent af818df800
commit 42f5402551

View File

@ -17,7 +17,7 @@ export class Run extends XmlComponent {
return this;
}
italics(): Run {
italic(): Run {
this.properties.push(new Italics());
return this;
}
@ -27,7 +27,12 @@ export class Run extends XmlComponent {
return this;
}
break() : Run {
break(): Run {
// TODO
return this;
}
tab(): Run {
// TODO
return this;
}