UNPKG

docx

Version:

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

14 lines (11 loc) 351 B
import { XmlAttributeComponent } from "file/xml-components"; export interface IOverrideAttributes { contentType: string; partName?: string; } export class OverrideAttributes extends XmlAttributeComponent<IOverrideAttributes> { protected xmlKeys = { contentType: "ContentType", partName: "PartName", }; }