mathjslab
Version:
MathJSLab - An interpreter with language syntax like MATLAB®/Octave, ISBN 978-65-00-82338-7.
33 lines (32 loc) • 2 kB
TypeScript
export { Decimal } from 'decimal.js';
export { CharString, singleQuoteCharacter, doubleQuoteCharacter, stringClass } from './CharString';
export type { SingleQuoteCharacter, DoubleQuoteCharacter, StringQuoteCharacter } from './CharString';
export { ComplexNumber } from './ComplexNumber';
export { ComplexDecimal } from './ComplexDecimal';
export { Complex, type ComplexType, type Decimal as ComplexDecimalType, type RealType, type NumberObjectType, type RealTypeDescriptor } from './Complex';
export { MultiArray } from './MultiArray';
export type { ElementType } from './MultiArray';
export { Structure } from './Structure';
export { FunctionHandle } from './FunctionHandle';
export { ClassMember } from './ClassMember';
export type { ClassAccess, ClassPropertyDefinition, ClassMethodDefinition, ClassEventDefinition, ClassEnumerationDefinition } from './ClassMember';
export { ClassDefinition } from './ClassDefinition';
export type { ClassMethodTable } from './ClassDefinition';
export { ClassInstance } from './ClassInstance';
export type { ClassInstancePropertyTable } from './ClassInstance';
export { ClassBoundMethod } from './ClassBoundMethod';
export { ClassStaticMethod } from './ClassStaticMethod';
export { ClassEmptyMethod } from './ClassEmptyMethod';
export { ClassEnumerationValue } from './ClassEnumerationValue';
export { ClassEventListener } from './ClassEventListener';
export { ClassEventData } from './ClassEventData';
export { ClassPropertyEvent } from './ClassPropertyEvent';
export { ClassMetaObject, ClassMetaClass, ClassMetaMember, ClassMetaProperty, ClassMetaMethod, ClassMetaEvent, ClassMetaEnumerationMember } from './ClassMeta';
export type { ClassMetaKind } from './ClassMeta';
export { LinearAlgebra } from './LinearAlgebra';
export { MathOperation } from './MathOperation';
export { CoreFunctions } from './CoreFunctions';
export { Configuration } from './Configuration';
export { MathML } from './MathML';
export * from './AST';
export * from './Interpreter';