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

10 lines
355 B
TypeScript

import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathLimitLowerOptions = {
readonly children: readonly MathComponent[];
readonly limit: readonly MathComponent[];
};
export declare class MathLimitLower extends XmlComponent {
constructor(options: IMathLimitLowerOptions);
}