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

11 lines
407 B
TypeScript

import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathIntegralOptions = {
readonly children: readonly MathComponent[];
readonly subScript?: readonly MathComponent[];
readonly superScript?: readonly MathComponent[];
};
export declare class MathIntegral extends XmlComponent {
constructor(options: IMathIntegralOptions);
}