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

10 lines
401 B
TypeScript

import { XmlComponent } from '../../../xml-components';
type MathNAryPropertiesOptions = {
readonly accent: string;
readonly hasSuperScript: boolean;
readonly hasSubScript: boolean;
readonly limitLocationVal?: string;
};
export declare const createMathNAryProperties: ({ accent, hasSuperScript, hasSubScript, limitLocationVal, }: MathNAryPropertiesOptions) => XmlComponent;
export {};