UNPKG

docx

Version:

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

10 lines (9 loc) 355 B
import { XmlComponent } from '../../../xml-components'; import { MathComponent } from '../math-component'; export type IMathLimitLowerOptions = { readonly children: readonly MathComponent[]; readonly limit: readonly MathComponent[]; }; export declare class MathLimitLower extends XmlComponent { constructor(options: IMathLimitLowerOptions); }