Files
study-bible-project/node_modules/docx/dist/file/paragraph/math/fraction/math-fraction.d.ts
T

10 lines
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);
}