docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
15 lines (14 loc) • 465 B
TypeScript
import { Paragraph } from "../../../file/paragraph";
import { XmlComponent } from "../../../file/xml-components";
export declare enum FootnoteType {
SEPERATOR = "separator",
CONTINUATION_SEPERATOR = "continuationSeparator"
}
export interface IFootnoteOptions {
readonly id: number;
readonly type?: FootnoteType;
readonly children: Paragraph[];
}
export declare class Footnote extends XmlComponent {
constructor(options: IFootnoteOptions);
}