12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
![]() |
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());
|
||
|
}
|
||
|
}
|