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) 309 B
import { XmlAttributeComponent } from "file/xml-components"; export class DefaultAttributes extends XmlAttributeComponent<{ readonly contentType: string; readonly extension?: string; }> { protected readonly xmlKeys = { contentType: "ContentType", extension: "Extension", }; }