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

9 lines
275 B
TypeScript

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