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
TypeScript
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathFunctionOptions = {
readonly children: readonly MathComponent[];
readonly name: readonly MathComponent[];
};
export declare class MathFunction extends XmlComponent {
constructor(options: IMathFunctionOptions);
}