the-math
Version:
TheMath is an extensive math library for JavaScript and Node.js. It features a flexible expression parser
24 lines (23 loc) • 793 B
TypeScript
import divide from './operations/divide';
import subtract from './operations/subtract';
import multiply from './operations/multiply';
import sum from './operations/sum';
import resolve from './resolve';
import createChain from './chain';
declare const chain: (startNumber: number) => import("./chain").IChain;
declare const TheMath: {
subtract: typeof subtract;
s: typeof subtract;
sum: typeof sum;
a: typeof sum;
divide: typeof divide;
d: typeof divide;
multiply: typeof multiply;
m: typeof multiply;
resolve: typeof resolve;
chain: (startNumber: number) => import("./chain").IChain;
createChain: typeof createChain;
};
export { IChainOptions, IChainOptionsGlobal, IRoundOptions } from './chain';
export { resolve, chain };
export default TheMath;