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) • 682 B
TypeScript
import { MathAngledBrackets, MathCurlyBrackets, MathRoundBrackets, MathSquareBrackets } from './brackets';
import { MathFraction } from './fraction';
import { MathFunction } from './function';
import { MathRun } from './math-run';
import { MathIntegral, MathSum } from './n-ary';
import { MathRadical } from './radical';
import { MathSubScript, MathSubSuperScript, MathSuperScript } from './script';
export type MathComponent = MathRun | MathFraction | MathSum | MathIntegral | MathSuperScript | MathSubScript | MathSubSuperScript | MathRadical | MathFunction | MathRoundBrackets | MathCurlyBrackets | MathAngledBrackets | MathSquareBrackets;
export declare const WORKAROUND4 = "";