UNPKG

docx

Version:

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

14 lines (13 loc) 390 B
import { XmlAttributeComponent } from "../../../../file/xml-components"; export interface IDocPropertiesAttributes { id?: number; name?: string; descr?: string; } export declare class DocPropertiesAttributes extends XmlAttributeComponent<IDocPropertiesAttributes> { protected xmlKeys: { id: string; name: string; descr: string; }; }