Files
docx-js/ts/docx/run/strike.ts

15 lines
254 B
TypeScript
Raw Normal View History

2016-07-12 08:25:53 +01:00
import {XmlComponent} from "../xml-components";
export class Strike extends XmlComponent {
constructor() {
super("w:strike");
}
}
export class DoubleStrike extends XmlComponent {
constructor() {
super("w:dstrike");
}
}