fixed failing test
This commit is contained in:
@ -10,11 +10,11 @@ class TabStop extends XmlComponent {
|
|||||||
|
|
||||||
class Tab extends XmlComponent {
|
class Tab extends XmlComponent {
|
||||||
|
|
||||||
constructor(value: string, position: number) {
|
constructor(value: string, position: any) {
|
||||||
super("w:tab");
|
super("w:tab");
|
||||||
this.root.push(new Attributes({
|
this.root.push(new Attributes({
|
||||||
val: value,
|
val: value,
|
||||||
pos: position.toString(),
|
pos: position,
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user