UNPKG

docx

Version:

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

12 lines (9 loc) 293 B
import { XmlAttributeComponent } from "file/xml-components"; export interface IHeaderReferenceAttributes { value: string; } export class TitlePageAttributes extends XmlAttributeComponent<IHeaderReferenceAttributes> { protected xmlKeys = { value: "w:val", }; }