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) • 365 B
TypeScript
import { IViewWrapper } from './document-wrapper';
import { Endnotes } from './endnotes/endnotes';
import { Relationships } from './relationships';
export declare class EndnotesWrapper implements IViewWrapper {
private readonly endnotes;
private readonly relationships;
constructor();
get View(): Endnotes;
get Relationships(): Relationships;
}