10 lines
355 B
TypeScript
10 lines
355 B
TypeScript
import { XmlComponent } from '../../../xml-components';
|
|
import { MathComponent } from '../math-component';
|
|
export type IMathLimitUpperOptions = {
|
|
readonly children: readonly MathComponent[];
|
|
readonly limit: readonly MathComponent[];
|
|
};
|
|
export declare class MathLimitUpper extends XmlComponent {
|
|
constructor(options: IMathLimitUpperOptions);
|
|
}
|