docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
11 lines (10 loc) • 375 B
TypeScript
import { XmlComponent } from "../../../../file/xml-components";
import { MathComponent } from "../math-component";
export interface IMathSumOptions {
readonly children: MathComponent[];
readonly subScript?: MathComponent[];
readonly superScript?: MathComponent[];
}
export declare class MathSum extends XmlComponent {
constructor(options: IMathSumOptions);
}