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