UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

11 lines (10 loc) 372 B
import { IViewWrapper } from "./document-wrapper"; import { FootNotes } from "./footnotes/footnotes"; import { Relationships } from "./relationships"; export declare class FootnotesWrapper implements IViewWrapper { private readonly footnotess; private readonly relationships; constructor(); get View(): FootNotes; get Relationships(): Relationships; }