UNPKG

docx

Version:

Generate .docx documents with JavaScript (formerly Office-Clippy)

10 lines (9 loc) 364 B
import { XmlComponent } from "../../../../../file/xml-components"; import { HeaderReferenceType } from "./header-reference-attributes"; export interface IHeaderOptions { readonly headerType?: HeaderReferenceType; readonly headerId?: number; } export declare class HeaderReference extends XmlComponent { constructor(options: IHeaderOptions); }