Files
study-bible-project/node_modules/docx/dist/file/footnotes/footnote/run/reference-run.d.ts
T

16 lines
482 B
TypeScript

import { Run } from '../../../paragraph/run';
import { XmlAttributeComponent, XmlComponent } from '../../../xml-components';
export declare class FootNoteReferenceRunAttributes extends XmlAttributeComponent<{
readonly id: number;
}> {
protected readonly xmlKeys: {
id: string;
};
}
export declare class FootnoteReference extends XmlComponent {
constructor(id: number);
}
export declare class FootnoteReferenceRun extends Run {
constructor(id: number);
}