Files
docx-js/src/file/footnotes/footnote/run/seperator.ts

8 lines
165 B
TypeScript
Raw Normal View History

import { XmlComponent } from "@file/xml-components";
2018-06-25 19:50:19 +01:00
export class Seperator extends XmlComponent {
2022-08-31 07:52:27 +01:00
public constructor() {
2018-06-25 19:50:19 +01:00
super("w:separator");
}
}