UNPKG

docx

Version:

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

14 lines (11 loc) 336 B
import { XmlAttributeComponent } from "file/xml-components"; export interface IHeaderReferenceAttributes { type: string; id: string; } export class HeaderReferenceAttributes extends XmlAttributeComponent<IHeaderReferenceAttributes> { protected xmlKeys = { type: "w:type", id: "r:id", }; }