10 lines
401 B
TypeScript
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 {};
|