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) • 356 B
TypeScript
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathFractionOptions = {
readonly numerator: readonly MathComponent[];
readonly denominator: readonly MathComponent[];
};
export declare class MathFraction extends XmlComponent {
constructor(options: IMathFractionOptions);
}