UNPKG

docx

Version:

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

13 lines (11 loc) 317 B
export interface IXmlAttribute { readonly [key: string]: string | number | boolean; } export interface IXmlableObject extends Object { readonly _attr?: IXmlAttribute; } // Needed because of: https://github.com/s-panferov/awesome-typescript-loader/issues/432 /** * @ignore */ export const WORKAROUND3 = "";