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

12 lines
257 B
TypeScript
Raw Normal View History

2018-06-28 03:01:25 +01:00
import { Run } from "file/paragraph";
import { FootnoteRef } from "./footnote-ref";
export class FootnoteRefRun extends Run {
constructor() {
super();
this.style("FootnoteReference");
this.root.push(new FootnoteRef());
}
}