Files
docx-js/src/file/footnotes/footnote/run/footnote-ref-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

14 lines
269 B
TypeScript

import { Run } from "@file/paragraph";
import { FootnoteRef } from "./footnote-ref";
export class FootnoteRefRun extends Run {
constructor() {
super({
style: "FootnoteReference",
});
this.root.push(new FootnoteRef());
}
}