Files
docx-js/src/file/footnotes/footnote/run/seperator-run.ts
Dolan Miu 982d923553 Improve import alias
@file/ and @export/ instead of file/ and export/ etc
2022-06-26 23:26:42 +01:00

11 lines
210 B
TypeScript

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