added new run methods
This commit is contained in:
15
ts/docx/run/strike.ts
Normal file
15
ts/docx/run/strike.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import {XmlComponent} from "../xml-components";
|
||||
|
||||
export class Strike extends XmlComponent {
|
||||
|
||||
constructor() {
|
||||
super("w:strike");
|
||||
}
|
||||
}
|
||||
|
||||
export class DoubleStrike extends XmlComponent {
|
||||
|
||||
constructor() {
|
||||
super("w:dstrike");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user