docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
16 lines (15 loc) • 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);
}