UNPKG

docx

Version:

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

14 lines (11 loc) 362 B
import { XmlAttributeComponent } from "file/xml-components"; export interface IAppPropertiesAttributes { readonly xmlns: string; readonly vt: string; } export class AppPropertiesAttributes extends XmlAttributeComponent<IAppPropertiesAttributes> { protected readonly xmlKeys = { xmlns: "xmlns", vt: "xmlns:vt", }; }