UNPKG

@joefitter/docx

Version:

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

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