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