14 lines
269 B
TypeScript
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());
|
|
}
|
|
}
|