Files
docx-js/src/file/footnotes/footnote/run/continuation-seperator-run.ts
2019-06-17 01:51:57 +01:00

11 lines
258 B
TypeScript

import { Run } from "file/paragraph";
import { ContinuationSeperator } from "./continuation-seperator";
export class ContinuationSeperatorRun extends Run {
constructor() {
super({});
this.root.push(new ContinuationSeperator());
}
}