Files
docx-js/src/file/footnotes/footnote/run/seperator-run.ts
2022-08-31 07:52:27 +01:00

11 lines
217 B
TypeScript

import { Run } from "@file/paragraph";
import { Seperator } from "./seperator";
export class SeperatorRun extends Run {
public constructor() {
super({});
this.root.push(new Seperator());
}
}