2022-06-26 23:26:42 +01:00
|
|
|
import { Run } from "@file/paragraph";
|
|
|
|
|
2018-06-28 03:01:25 +01:00
|
|
|
import { FootnoteRef } from "./footnote-ref";
|
|
|
|
|
|
|
|
export class FootnoteRefRun extends Run {
|
|
|
|
constructor() {
|
2019-06-17 01:51:57 +01:00
|
|
|
super({
|
|
|
|
style: "FootnoteReference",
|
|
|
|
});
|
2018-06-28 03:01:25 +01:00
|
|
|
|
|
|
|
this.root.push(new FootnoteRef());
|
|
|
|
}
|
|
|
|
}
|