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

10 lines
348 B
TypeScript

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