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) 276 B
import { XmlComponent } from "../../../file/xml-components"; import { MathComponent } from "./math-component"; export interface IMathOptions { readonly children: MathComponent[]; } export declare class Math extends XmlComponent { constructor(options: IMathOptions); }