pimath 0.0.130 → 0.0.132

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/main.d.ts CHANGED
@@ -1,39 +1 @@
1
- import { Point } from './maths/geometry/point.ts';
2
- import { Circle } from './maths/geometry/circle.ts';
3
- import { Triangle } from './maths/geometry/triangle.ts';
4
- import { Line } from './maths/geometry/line.ts';
5
- import { Vector } from './maths/geometry/vector.ts';
6
- import { Logicalset } from './maths/algebra/logicalset.ts';
7
- import { Rational } from './maths/algebra/rational.ts';
8
- import { LinearSystem } from './maths/algebra/linearSystem.ts';
9
- import { Equation } from './maths/algebra/equation.ts';
10
- import { Polynom } from './maths/algebra/polynom.ts';
11
- import { Monom } from './maths/algebra/monom.ts';
12
- import { NthRoot } from './maths/coefficients/nthRoot.ts';
13
- import { Fraction } from './maths/coefficients/fraction.ts';
14
- import { Random } from './maths/randomization/random.ts';
15
- import { Shutingyard } from './maths/shutingyard.ts';
16
- import { NumExp } from './maths/numexp.ts';
17
- import { Numeric } from './maths/numeric.ts';
18
-
19
- export declare const PiMath: {
20
- ShutingYard: typeof Shutingyard;
21
- Numeric: typeof Numeric;
22
- NumExp: typeof NumExp;
23
- Fraction: typeof Fraction;
24
- Root: typeof NthRoot;
25
- Monom: typeof Monom;
26
- Polynom: typeof Polynom;
27
- Equation: typeof Equation;
28
- LinearSystem: typeof LinearSystem;
29
- Rational: typeof Rational;
30
- Logicalset: typeof Logicalset;
31
- Random: typeof Random;
32
- Geometry: {
33
- Vector: typeof Vector;
34
- Point: typeof Point;
35
- Line: typeof Line;
36
- Triangle: typeof Triangle;
37
- Circle: typeof Circle;
38
- };
39
- };
1
+ export { PiMath } from './pimath.ts';
@@ -0,0 +1,39 @@
1
+ import { Circle } from './maths/geometry/circle.ts';
2
+ import { Triangle } from './maths/geometry/triangle.ts';
3
+ import { Line } from './maths/geometry/line.ts';
4
+ import { Point } from './maths/geometry/point.ts';
5
+ import { Vector } from './maths/geometry/vector.ts';
6
+ import { Random } from './maths/randomization/random.ts';
7
+ import { Logicalset } from './maths/algebra/logicalset.ts';
8
+ import { Rational } from './maths/algebra/rational.ts';
9
+ import { LinearSystem } from './maths/algebra/linearSystem.ts';
10
+ import { Equation } from './maths/algebra/equation.ts';
11
+ import { Polynom } from './maths/algebra/polynom.ts';
12
+ import { Monom } from './maths/algebra/monom.ts';
13
+ import { NthRoot } from './maths/coefficients/nthRoot.ts';
14
+ import { Fraction } from './maths/coefficients/fraction.ts';
15
+ import { NumExp } from './maths/numexp.ts';
16
+ import { Numeric } from './maths/numeric.ts';
17
+ import { Shutingyard } from './maths/shutingyard.ts';
18
+
19
+ export declare const PiMath: {
20
+ ShutingYard: typeof Shutingyard;
21
+ Numeric: typeof Numeric;
22
+ NumExp: typeof NumExp;
23
+ Fraction: typeof Fraction;
24
+ Root: typeof NthRoot;
25
+ Monom: typeof Monom;
26
+ Polynom: typeof Polynom;
27
+ Equation: typeof Equation;
28
+ LinearSystem: typeof LinearSystem;
29
+ Rational: typeof Rational;
30
+ Logicalset: typeof Logicalset;
31
+ Random: typeof Random;
32
+ Geometry: {
33
+ Vector: typeof Vector;
34
+ Point: typeof Point;
35
+ Line: typeof Line;
36
+ Triangle: typeof Triangle;
37
+ Circle: typeof Circle;
38
+ };
39
+ };