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;
}
@ -31,4 +31,9 @@ export class Run extends XmlComponent {
// TODO
return this;
}
tab(): Run {
// TODO
return this;
}
}