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

10 lines
348 B
TypeScript

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