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

16 lines
257 B
TypeScript
Raw Normal View History

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