Files
docx-js/src/file/paragraph/run/caps.ts

16 lines
255 B
TypeScript
Raw Normal View History

2017-12-19 23:13:11 +00:00
import { XmlComponent } from "../../xml-components";
2016-07-12 08:25:53 +01:00
export class SmallCaps extends XmlComponent {
constructor() {
super("w:smallCaps");
}
}
export class Caps extends XmlComponent {
constructor() {
super("w:caps");
}
}