UNPKG

docx

Version:

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

9 lines (8 loc) 275 B
import { XmlComponent } from '../../xml-components'; import { MathComponent } from './math-component'; export type IMathOptions = { readonly children: readonly MathComponent[]; }; export declare class Math extends XmlComponent { constructor(options: IMathOptions); }