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

11 lines
217 B
TypeScript
Raw Normal View History

import { Run } from "@file/paragraph";
2018-06-25 19:50:19 +01:00
import { Seperator } from "./seperator";
export class SeperatorRun extends Run {
2022-08-31 07:52:27 +01:00
public constructor() {
2019-06-17 01:51:57 +01:00
super({});
2018-06-25 19:50:19 +01:00
this.root.push(new Seperator());
}
}