UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

12 lines (10 loc) 307 B
import { XmlAttributeComponent } from "file/xml-components"; export class OverrideAttributes extends XmlAttributeComponent<{ readonly contentType: string; readonly partName?: string; }> { protected readonly xmlKeys = { contentType: "ContentType", partName: "PartName", }; }