@buley/hexgrid-3d 1.1.0 → 1.1.1
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/build_log.txt +500 -0
- package/build_src_log.txt +8 -0
- package/package.json +1 -1
- package/site/.eslintrc.json +3 -0
- package/site/DEPLOYMENT.md +196 -0
- package/site/INDEX.md +127 -0
- package/site/QUICK_START.md +86 -0
- package/site/README.md +85 -0
- package/site/SITE_SUMMARY.md +180 -0
- package/site/next.config.js +12 -0
- package/site/package.json +26 -0
- package/site/src/app/docs/page.tsx +148 -0
- package/site/src/app/examples/page.tsx +133 -0
- package/site/src/app/globals.css +160 -0
- package/site/src/app/layout.tsx +29 -0
- package/site/src/app/page.tsx +163 -0
- package/site/tsconfig.json +29 -0
- package/site/vercel.json +6 -0
- package/src/adapters/DashAdapter.ts +57 -0
- package/src/algorithms/ParticleSystem3D.ts +25 -4
- package/src/components/NarrationOverlay.tsx +1 -1
- package/src/lib/narration.ts +17 -0
- package/src/lib/stats-tracker.ts +25 -0
- package/src/lib/theme-colors.ts +12 -0
- package/src/math/HexCoordinates.ts +849 -4
- package/src/math/Vector3.ts +44 -0
- package/src/types/shared-utils.d.ts +10 -0
- package/src/types.ts +1 -0
- package/tsconfig.json +21 -14
package/build_log.txt
ADDED
|
@@ -0,0 +1,500 @@
|
|
|
1
|
+
$ tsc
|
|
2
|
+
src/components/HexGrid.tsx(6,3): error TS2459: Module '"../types"' declares 'HexGridFeatureFlags' locally, but it is not exported.
|
|
3
|
+
src/components/NarrationOverlay.tsx(8,34): error TS2307: Cannot find module '@/lib/narration' or its corresponding type declarations.
|
|
4
|
+
src/components/NarrationOverlay.tsx(9,30): error TS2307: Cannot find module '@/lib/stats-tracker' or its corresponding type declarations.
|
|
5
|
+
src/components/NarrationOverlay.tsx(10,45): error TS2307: Cannot find module '@/lib/theme-colors' or its corresponding type declarations.
|
|
6
|
+
src/components/NarrationOverlay.tsx(200,31): error TS7006: Parameter 'entry' implicitly has an 'any' type.
|
|
7
|
+
src/components/NarrationOverlay.tsx(200,38): error TS7006: Parameter 'i' implicitly has an 'any' type.
|
|
8
|
+
src/ontology-adapter.ts(8,37): error TS2307: Cannot find module '@emotions-app/shared-utils/ontology/types' or its corresponding type declarations.
|
|
9
|
+
tests/integration/HexGrid.integration.test.tsx(9,9): error TS2322: Type '{ id: string; url: string; source: string; createdAt: string; title: string; }[]' is not assignable to type 'Photo[]'.
|
|
10
|
+
Type '{ id: string; url: string; source: string; createdAt: string; title: string; }' is missing the following properties from type 'Photo': imageUrl, alt, category
|
|
11
|
+
tests/integration/HexGrid.integration.test.tsx(49,21): error TS2322: Type '{ id: string; url: string; source: string; createdAt: string; }[]' is not assignable to type 'Photo[]'.
|
|
12
|
+
Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
13
|
+
tests/integration/HexGrid.integration.test.tsx(67,23): error TS2322: Type '(Photo | { id: string; url: string; source: string; createdAt: string; })[]' is not assignable to type 'Photo[]'.
|
|
14
|
+
Type 'Photo | { id: string; url: string; source: string; createdAt: string; }' is not assignable to type 'Photo'.
|
|
15
|
+
Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
16
|
+
tests/setup.ts(7,22): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
17
|
+
tests/unit/adapters.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
18
|
+
tests/unit/AdvancedStatistics.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
19
|
+
tests/unit/AdvancedStatistics.test.ts(69,14): error TS2554: Expected 2 arguments, but got 1.
|
|
20
|
+
tests/unit/AdvancedStatistics.test.ts(74,14): error TS2554: Expected 2 arguments, but got 1.
|
|
21
|
+
tests/unit/AdvancedStatistics.test.ts(78,14): error TS2554: Expected 2 arguments, but got 1.
|
|
22
|
+
tests/unit/AdvancedStatistics.test.ts(82,14): error TS2554: Expected 2 arguments, but got 1.
|
|
23
|
+
tests/unit/AdvancedStatistics.test.ts(108,22): error TS2554: Expected 2 arguments, but got 1.
|
|
24
|
+
tests/unit/AdvancedStatistics.test.ts(114,22): error TS2554: Expected 2 arguments, but got 1.
|
|
25
|
+
tests/unit/AdvancedStatistics.test.ts(120,22): error TS2554: Expected 2 arguments, but got 1.
|
|
26
|
+
tests/unit/BayesianStatistics.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
27
|
+
tests/unit/BayesianStatistics.test.ts(3,3): error TS2305: Module '"../../src/algorithms/BayesianStatistics"' has no exported member 'logGamma'.
|
|
28
|
+
tests/unit/BayesianStatistics.test.ts(4,3): error TS2305: Module '"../../src/algorithms/BayesianStatistics"' has no exported member 'gamma'.
|
|
29
|
+
tests/unit/BayesianStatistics.test.ts(5,3): error TS2305: Module '"../../src/algorithms/BayesianStatistics"' has no exported member 'betaFunction'.
|
|
30
|
+
tests/unit/BayesianStatistics.test.ts(6,3): error TS2305: Module '"../../src/algorithms/BayesianStatistics"' has no exported member 'logBeta'.
|
|
31
|
+
tests/unit/BayesianStatistics.test.ts(7,3): error TS2305: Module '"../../src/algorithms/BayesianStatistics"' has no exported member 'factorial'.
|
|
32
|
+
tests/unit/BayesianStatistics.test.ts(8,3): error TS2305: Module '"../../src/algorithms/BayesianStatistics"' has no exported member 'binomial'.
|
|
33
|
+
tests/unit/compat.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
34
|
+
tests/unit/compat.test.ts(32,5): error TS2322: Type '{ x: number; y: number; z: number; }' is not assignable to type 'number'.
|
|
35
|
+
tests/unit/compat.test.ts(180,9): error TS2322: Type '{ x: number; y: number; z: number; }' is not assignable to type 'number'.
|
|
36
|
+
tests/unit/featureFlags.test.tsx(2,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
37
|
+
tests/unit/FlowField.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
38
|
+
tests/unit/FlowField.test.ts(13,20): error TS2339: Property 'width' does not exist on type 'FlowField2D'.
|
|
39
|
+
tests/unit/FlowField.test.ts(14,20): error TS2339: Property 'height' does not exist on type 'FlowField2D'.
|
|
40
|
+
tests/unit/FlowField.test.ts(15,20): error TS2339: Property 'resolution' does not exist on type 'FlowField2D'.
|
|
41
|
+
tests/unit/FlowField.test.ts(16,20): error TS2339: Property 'cols' does not exist on type 'FlowField2D'.
|
|
42
|
+
tests/unit/FlowField.test.ts(17,20): error TS2339: Property 'rows' does not exist on type 'FlowField2D'.
|
|
43
|
+
tests/unit/FlowField.test.ts(34,9): error TS2353: Object literal may only specify known properties, and 'decayRate' does not exist in type 'FlowFieldConfig'.
|
|
44
|
+
tests/unit/FlowField.test.ts(48,13): error TS2339: Property 'addVelocity' does not exist on type 'FlowField2D'.
|
|
45
|
+
tests/unit/FlowField.test.ts(59,13): error TS2339: Property 'addVelocity' does not exist on type 'FlowField2D'.
|
|
46
|
+
tests/unit/FlowField.test.ts(70,13): error TS2339: Property 'addVelocity' does not exist on type 'FlowField2D'.
|
|
47
|
+
tests/unit/FlowField.test.ts(71,13): error TS2339: Property 'addVelocity' does not exist on type 'FlowField2D'.
|
|
48
|
+
tests/unit/FlowField.test.ts(91,13): error TS2339: Property 'addVortex' does not exist on type 'FlowField2D'.
|
|
49
|
+
tests/unit/FluidSimulation.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
50
|
+
tests/unit/FluidSimulation.test.ts(8,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
51
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
52
|
+
tests/unit/FluidSimulation.test.ts(16,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
53
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
54
|
+
tests/unit/FluidSimulation.test.ts(29,11): error TS2353: Object literal may only specify known properties, and 'pressureIterations' does not exist in type 'FluidConfig'.
|
|
55
|
+
tests/unit/FluidSimulation.test.ts(40,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
56
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
57
|
+
tests/unit/FluidSimulation.test.ts(45,15): error TS2554: Expected 1 arguments, but got 0.
|
|
58
|
+
tests/unit/FluidSimulation.test.ts(52,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
59
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
60
|
+
tests/unit/FluidSimulation.test.ts(56,15): error TS2551: Property 'addSource' does not exist on type 'StableFluids'. Did you mean 'addForce'?
|
|
61
|
+
tests/unit/FluidSimulation.test.ts(68,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
62
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
63
|
+
tests/unit/FluidSimulation.test.ts(72,15): error TS2551: Property 'addSource' does not exist on type 'StableFluids'. Did you mean 'addForce'?
|
|
64
|
+
tests/unit/FluidSimulation.test.ts(84,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
65
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
66
|
+
tests/unit/FluidSimulation.test.ts(88,15): error TS2551: Property 'addSource' does not exist on type 'StableFluids'. Did you mean 'addForce'?
|
|
67
|
+
tests/unit/FluidSimulation.test.ts(103,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
68
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
69
|
+
tests/unit/FluidSimulation.test.ts(112,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
70
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
71
|
+
tests/unit/FluidSimulation.test.ts(122,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
72
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
73
|
+
tests/unit/FluidSimulation.test.ts(126,29): error TS2339: Property 'getColor' does not exist on type 'StableFluids'.
|
|
74
|
+
tests/unit/FluidSimulation.test.ts(131,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
75
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
76
|
+
tests/unit/FluidSimulation.test.ts(140,40): error TS2345: Argument of type '{ width: number; height: number; }' is not assignable to parameter of type 'FluidConfig'.
|
|
77
|
+
Type '{ width: number; height: number; }' is missing the following properties from type 'FluidConfig': viscosity, diffusion
|
|
78
|
+
tests/unit/GraphAlgorithms.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
79
|
+
tests/unit/GraphAlgorithms.test.ts(84,52): error TS2554: Expected 2 arguments, but got 3.
|
|
80
|
+
tests/unit/GraphAlgorithms.test.ts(95,52): error TS2554: Expected 2 arguments, but got 4.
|
|
81
|
+
tests/unit/HexCoordinates.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
82
|
+
tests/unit/HexCoordinates.test.ts(4,3): error TS2305: Module '"../../src/math/HexCoordinates"' has no exported member 'Cube'.
|
|
83
|
+
tests/unit/HexCoordinates.test.ts(5,3): error TS2305: Module '"../../src/math/HexCoordinates"' has no exported member 'GeodesicHexGrid'.
|
|
84
|
+
tests/unit/HexCoordinates.test.ts(6,3): error TS2305: Module '"../../src/math/HexCoordinates"' has no exported member 'HEALPixGrid'.
|
|
85
|
+
tests/unit/HexCoordinates.test.ts(7,3): error TS2305: Module '"../../src/math/HexCoordinates"' has no exported member 'AXIAL_DIRECTIONS'.
|
|
86
|
+
tests/unit/HexCoordinates.test.ts(8,3): error TS2305: Module '"../../src/math/HexCoordinates"' has no exported member 'CUBE_DIRECTIONS'.
|
|
87
|
+
tests/unit/HexCoordinates.test.ts(9,3): error TS2305: Module '"../../src/math/HexCoordinates"' has no exported member 'generateFlatHexGrid'.
|
|
88
|
+
tests/unit/HexCoordinates.test.ts(10,3): error TS2305: Module '"../../src/math/HexCoordinates"' has no exported member 'generateSphericalHexGrid'.
|
|
89
|
+
tests/unit/HexCoordinates.test.ts(17,23): error TS2339: Property 'zero' does not exist on type 'typeof Axial'.
|
|
90
|
+
tests/unit/HexCoordinates.test.ts(24,27): error TS2339: Property 'fromCube' does not exist on type 'typeof Axial'.
|
|
91
|
+
tests/unit/HexCoordinates.test.ts(31,27): error TS2339: Property 'fromOffset' does not exist on type 'typeof Axial'.
|
|
92
|
+
tests/unit/HexCoordinates.test.ts(37,27): error TS2339: Property 'fromOffset' does not exist on type 'typeof Axial'.
|
|
93
|
+
tests/unit/HexCoordinates.test.ts(42,47): error TS2554: Expected 3 arguments, but got 4.
|
|
94
|
+
tests/unit/HexCoordinates.test.ts(48,47): error TS2554: Expected 3 arguments, but got 4.
|
|
95
|
+
tests/unit/HexCoordinates.test.ts(54,27): error TS2339: Property 'round' does not exist on type 'typeof Axial'.
|
|
96
|
+
tests/unit/HexCoordinates.test.ts(61,19): error TS2339: Property 'clone' does not exist on type 'Axial'.
|
|
97
|
+
tests/unit/HexCoordinates.test.ts(71,16): error TS2339: Property 'equals' does not exist on type 'Axial'.
|
|
98
|
+
tests/unit/HexCoordinates.test.ts(72,16): error TS2339: Property 'equals' does not exist on type 'Axial'.
|
|
99
|
+
tests/unit/HexCoordinates.test.ts(78,24): error TS2339: Property 'add' does not exist on type 'Axial'.
|
|
100
|
+
tests/unit/HexCoordinates.test.ts(86,24): error TS2339: Property 'subtract' does not exist on type 'Axial'.
|
|
101
|
+
tests/unit/HexCoordinates.test.ts(93,24): error TS2339: Property 'scale' does not exist on type 'Axial'.
|
|
102
|
+
tests/unit/HexCoordinates.test.ts(100,16): error TS2339: Property 's' does not exist on type 'Axial'.
|
|
103
|
+
tests/unit/HexCoordinates.test.ts(105,22): error TS2339: Property 'toCube' does not exist on type 'Axial'.
|
|
104
|
+
tests/unit/HexCoordinates.test.ts(113,24): error TS2339: Property 'toOffset' does not exist on type 'Axial'.
|
|
105
|
+
tests/unit/HexCoordinates.test.ts(120,24): error TS2339: Property 'toOffset' does not exist on type 'Axial'.
|
|
106
|
+
tests/unit/HexCoordinates.test.ts(126,23): error TS2339: Property 'toPixel' does not exist on type 'Axial'.
|
|
107
|
+
tests/unit/HexCoordinates.test.ts(133,23): error TS2339: Property 'toPixel' does not exist on type 'Axial'.
|
|
108
|
+
tests/unit/HexCoordinates.test.ts(140,23): error TS2339: Property 'toPixel' does not exist on type 'Axial'.
|
|
109
|
+
tests/unit/HexCoordinates.test.ts(141,58): error TS2554: Expected 3 arguments, but got 4.
|
|
110
|
+
tests/unit/HexCoordinates.test.ts(148,23): error TS2339: Property 'toPixel' does not exist on type 'Axial'.
|
|
111
|
+
tests/unit/HexCoordinates.test.ts(149,58): error TS2554: Expected 3 arguments, but got 4.
|
|
112
|
+
tests/unit/HexCoordinates.test.ts(157,16): error TS2339: Property 'distanceTo' does not exist on type 'Axial'.
|
|
113
|
+
tests/unit/HexCoordinates.test.ts(162,27): error TS2339: Property 'neighbors' does not exist on type 'Axial'.
|
|
114
|
+
tests/unit/HexCoordinates.test.ts(168,26): error TS2339: Property 'neighbor' does not exist on type 'Axial'.
|
|
115
|
+
tests/unit/HexCoordinates.test.ts(174,23): error TS2339: Property 'range' does not exist on type 'Axial'.
|
|
116
|
+
tests/unit/HexCoordinates.test.ts(180,22): error TS2339: Property 'ring' does not exist on type 'Axial'.
|
|
117
|
+
tests/unit/HexCoordinates.test.ts(186,22): error TS2339: Property 'ring' does not exist on type 'Axial'.
|
|
118
|
+
tests/unit/HexCoordinates.test.ts(193,24): error TS2339: Property 'spiral' does not exist on type 'Axial'.
|
|
119
|
+
tests/unit/HexCoordinates.test.ts(200,22): error TS2339: Property 'lineTo' does not exist on type 'Axial'.
|
|
120
|
+
tests/unit/HexCoordinates.test.ts(208,22): error TS2339: Property 'lineTo' does not exist on type 'Axial'.
|
|
121
|
+
tests/unit/HexCoordinates.test.ts(214,25): error TS2339: Property 'rotateCW' does not exist on type 'Axial'.
|
|
122
|
+
tests/unit/HexCoordinates.test.ts(220,25): error TS2339: Property 'rotateCCW' does not exist on type 'Axial'.
|
|
123
|
+
tests/unit/HexCoordinates.test.ts(227,25): error TS2339: Property 'rotateAroundCW' does not exist on type 'Axial'.
|
|
124
|
+
tests/unit/HexCoordinates.test.ts(234,25): error TS2339: Property 'rotateAroundCCW' does not exist on type 'Axial'.
|
|
125
|
+
tests/unit/HexCoordinates.test.ts(240,27): error TS2339: Property 'reflectQ' does not exist on type 'Axial'.
|
|
126
|
+
tests/unit/HexCoordinates.test.ts(242,34): error TS2339: Property 's' does not exist on type 'Axial'.
|
|
127
|
+
tests/unit/HexCoordinates.test.ts(247,27): error TS2339: Property 'reflectR' does not exist on type 'Axial'.
|
|
128
|
+
tests/unit/HexCoordinates.test.ts(253,27): error TS2339: Property 'reflectS' does not exist on type 'Axial'.
|
|
129
|
+
tests/unit/HexCoordinates.test.ts(265,16): error TS2339: Property 'toKey' does not exist on type 'Axial'.
|
|
130
|
+
tests/unit/HexCoordinates.test.ts(269,23): error TS2339: Property 'fromKey' does not exist on type 'typeof Axial'.
|
|
131
|
+
tests/unit/HexCoordinates.test.ts(276,21): error TS2339: Property 'toKey' does not exist on type 'Axial'.
|
|
132
|
+
tests/unit/HexCoordinates.test.ts(277,26): error TS2339: Property 'fromKey' does not exist on type 'typeof Axial'.
|
|
133
|
+
tests/unit/HexCoordinates.test.ts(366,26): error TS7006: Parameter 'n' implicitly has an 'any' type.
|
|
134
|
+
tests/unit/HexCoordinates.test.ts(469,32): error TS7006: Parameter 'd' implicitly has an 'any' type.
|
|
135
|
+
tests/unit/HexCoordinates.test.ts(668,35): error TS7006: Parameter 'coord' implicitly has an 'any' type.
|
|
136
|
+
tests/unit/HexCoordinates.test.ts(732,33): error TS7006: Parameter 'coord' implicitly has an 'any' type.
|
|
137
|
+
tests/unit/HexCoordinates.test.ts(745,33): error TS7006: Parameter 'coord' implicitly has an 'any' type.
|
|
138
|
+
tests/unit/HexCoordinates.test.ts(759,54): error TS7006: Parameter 'n' implicitly has an 'any' type.
|
|
139
|
+
tests/unit/HexCoordinates.test.ts(787,22): error TS7006: Parameter 'center' implicitly has an 'any' type.
|
|
140
|
+
tests/unit/HexGrid.extended.test.tsx(2,56): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
141
|
+
tests/unit/HexGrid.test.tsx(2,56): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
142
|
+
tests/unit/Matrix4.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
143
|
+
tests/unit/Matrix4.test.ts(2,19): error TS2724: '"../../src/math/Matrix4"' has no exported member named 'Matrix3'. Did you mean 'Matrix4'?
|
|
144
|
+
tests/unit/Matrix4.test.ts(9,16): error TS2341: Property 'elements' is private and only accessible within class 'Matrix4'.
|
|
145
|
+
tests/unit/Matrix4.test.ts(10,16): error TS2341: Property 'elements' is private and only accessible within class 'Matrix4'.
|
|
146
|
+
tests/unit/Matrix4.test.ts(11,16): error TS2341: Property 'elements' is private and only accessible within class 'Matrix4'.
|
|
147
|
+
tests/unit/Matrix4.test.ts(12,16): error TS2341: Property 'elements' is private and only accessible within class 'Matrix4'.
|
|
148
|
+
tests/unit/Matrix4.test.ts(13,16): error TS2341: Property 'elements' is private and only accessible within class 'Matrix4'.
|
|
149
|
+
tests/unit/Matrix4.test.ts(17,25): error TS2339: Property 'zero' does not exist on type 'typeof Matrix4'.
|
|
150
|
+
tests/unit/Matrix4.test.ts(24,25): error TS2339: Property 'perspective' does not exist on type 'typeof Matrix4'.
|
|
151
|
+
tests/unit/Matrix4.test.ts(30,25): error TS2339: Property 'orthographic' does not exist on type 'typeof Matrix4'.
|
|
152
|
+
tests/unit/Matrix4.test.ts(38,25): error TS2339: Property 'lookAt' does not exist on type 'typeof Matrix4'.
|
|
153
|
+
tests/unit/Matrix4.test.ts(44,16): error TS2341: Property 'elements' is private and only accessible within class 'Matrix4'.
|
|
154
|
+
tests/unit/Matrix4.test.ts(45,16): error TS2341: Property 'elements' is private and only accessible within class 'Matrix4'.
|
|
155
|
+
tests/unit/Matrix4.test.ts(46,16): error TS2341: Property 'elements' is private and only accessible within class 'Matrix4'.
|
|
156
|
+
tests/unit/Matrix4.test.ts(50,25): error TS2339: Property 'translationFromVector' does not exist on type 'typeof Matrix4'.
|
|
157
|
+
tests/unit/Matrix4.test.ts(57,25): error TS2339: Property 'scale' does not exist on type 'typeof Matrix4'.
|
|
158
|
+
tests/unit/Matrix4.test.ts(64,25): error TS2339: Property 'uniformScale' does not exist on type 'typeof Matrix4'.
|
|
159
|
+
tests/unit/Matrix4.test.ts(71,25): error TS2339: Property 'rotationX' does not exist on type 'typeof Matrix4'.
|
|
160
|
+
tests/unit/Matrix4.test.ts(78,25): error TS2339: Property 'rotationY' does not exist on type 'typeof Matrix4'.
|
|
161
|
+
tests/unit/Matrix4.test.ts(84,25): error TS2339: Property 'rotationZ' does not exist on type 'typeof Matrix4'.
|
|
162
|
+
tests/unit/Matrix4.test.ts(91,25): error TS2339: Property 'rotationAxis' does not exist on type 'typeof Matrix4'.
|
|
163
|
+
tests/unit/Matrix4.test.ts(96,25): error TS2339: Property 'rotationEuler' does not exist on type 'typeof Matrix4'.
|
|
164
|
+
tests/unit/Matrix4.test.ts(104,25): error TS2339: Property 'compose' does not exist on type 'typeof Matrix4'.
|
|
165
|
+
tests/unit/Matrix4.test.ts(113,21): error TS2339: Property 'clone' does not exist on type 'Matrix4'.
|
|
166
|
+
tests/unit/Matrix4.test.ts(116,17): error TS2341: Property 'elements' is private and only accessible within class 'Matrix4'.
|
|
167
|
+
tests/unit/Matrix4.test.ts(122,10): error TS2339: Property 'copy' does not exist on type 'Matrix4'.
|
|
168
|
+
tests/unit/Matrix4.test.ts(123,17): error TS2341: Property 'elements' is private and only accessible within class 'Matrix4'.
|
|
169
|
+
tests/unit/Matrix4.test.ts(128,25): error TS2339: Property 'scale' does not exist on type 'typeof Matrix4'.
|
|
170
|
+
tests/unit/Matrix4.test.ts(129,24): error TS2339: Property 'multiply' does not exist on type 'Matrix4'.
|
|
171
|
+
tests/unit/Matrix4.test.ts(136,25): error TS2339: Property 'scale' does not exist on type 'typeof Matrix4'.
|
|
172
|
+
tests/unit/Matrix4.test.ts(137,24): error TS2339: Property 'premultiply' does not exist on type 'Matrix4'.
|
|
173
|
+
tests/unit/Matrix4.test.ts(153,24): error TS2339: Property 'transformDirection' does not exist on type 'Matrix4'.
|
|
174
|
+
tests/unit/Matrix4.test.ts(159,25): error TS2339: Property 'scale' does not exist on type 'typeof Matrix4'.
|
|
175
|
+
tests/unit/Matrix4.test.ts(168,24): error TS2551: Property 'transformPoints' does not exist on type 'Matrix4'. Did you mean 'transformPoint'?
|
|
176
|
+
tests/unit/Matrix4.test.ts(175,16): error TS2339: Property 'determinant' does not exist on type 'Matrix4'.
|
|
177
|
+
tests/unit/Matrix4.test.ts(179,25): error TS2339: Property 'scale' does not exist on type 'typeof Matrix4'.
|
|
178
|
+
tests/unit/Matrix4.test.ts(185,21): error TS2339: Property 'inverse' does not exist on type 'Matrix4'.
|
|
179
|
+
tests/unit/Matrix4.test.ts(191,25): error TS2339: Property 'zero' does not exist on type 'typeof Matrix4'.
|
|
180
|
+
tests/unit/Matrix4.test.ts(199,19): error TS2339: Property 'transpose' does not exist on type 'Matrix4'.
|
|
181
|
+
tests/unit/Matrix4.test.ts(206,19): error TS2339: Property 'getTranslation' does not exist on type 'Matrix4'.
|
|
182
|
+
tests/unit/Matrix4.test.ts(213,25): error TS2339: Property 'scale' does not exist on type 'typeof Matrix4'.
|
|
183
|
+
tests/unit/Matrix4.test.ts(221,25): error TS2339: Property 'scale' does not exist on type 'typeof Matrix4'.
|
|
184
|
+
tests/unit/Matrix4.test.ts(221,57): error TS2339: Property 'rotationX' does not exist on type 'typeof Matrix4'.
|
|
185
|
+
tests/unit/Matrix4.test.ts(227,46): error TS2339: Property 'multiply' does not exist on type 'Matrix4'.
|
|
186
|
+
tests/unit/Matrix4.test.ts(227,63): error TS2339: Property 'scale' does not exist on type 'typeof Matrix4'.
|
|
187
|
+
tests/unit/Matrix4.test.ts(236,22): error TS2339: Property 'lerp' does not exist on type 'Matrix4'.
|
|
188
|
+
tests/unit/Matrix4.test.ts(243,17): error TS2339: Property 'equals' does not exist on type 'Matrix4'.
|
|
189
|
+
tests/unit/Matrix4.test.ts(248,21): error TS2339: Property 'toArray' does not exist on type 'Matrix4'.
|
|
190
|
+
tests/unit/Matrix4.test.ts(266,25): error TS2339: Property 'lookAt' does not exist on type 'typeof Matrix4'.
|
|
191
|
+
tests/unit/Matrix4.test.ts(274,25): error TS2339: Property 'lookAt' does not exist on type 'typeof Matrix4'.
|
|
192
|
+
tests/unit/Matrix4.test.ts(289,24): error TS2339: Property 'scale' does not exist on type 'typeof Matrix4'.
|
|
193
|
+
tests/unit/NarrationOverlay.test.tsx(2,44): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
194
|
+
tests/unit/OutlierDetection.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
195
|
+
tests/unit/OutlierDetection.test.ts(15,28): error TS2339: Property 'method' does not exist on type 'OutlierResult'.
|
|
196
|
+
tests/unit/OutlierDetection.test.ts(47,27): error TS2551: Property 'median' does not exist on type 'OutlierStats'. Did you mean 'mean'?
|
|
197
|
+
tests/unit/OutlierDetection.test.ts(58,21): error TS2339: Property 'method' does not exist on type 'OutlierResult'.
|
|
198
|
+
tests/unit/OutlierDetection.test.ts(77,34): error TS2339: Property 'iqr' does not exist on type 'OutlierStats'.
|
|
199
|
+
tests/unit/OutlierDetection.test.ts(105,34): error TS2339: Property 'mad' does not exist on type 'OutlierStats'.
|
|
200
|
+
tests/unit/ParticleSystem.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
201
|
+
tests/unit/ParticleSystem.test.ts(4,3): error TS2305: Module '"../../src/algorithms/ParticleSystem"' has no exported member 'ParticleEmitter'.
|
|
202
|
+
tests/unit/ParticleSystem.test.ts(11,41): error TS2554: Expected 0 arguments, but got 1.
|
|
203
|
+
tests/unit/ParticleSystem.test.ts(18,41): error TS2554: Expected 0 arguments, but got 1.
|
|
204
|
+
tests/unit/ParticleSystem.test.ts(32,41): error TS2554: Expected 0 arguments, but got 1.
|
|
205
|
+
tests/unit/ParticleSystem.test.ts(33,30): error TS2339: Property 'createEmitter' does not exist on type 'ParticleSystem'.
|
|
206
|
+
tests/unit/ParticleSystem.test.ts(45,41): error TS2554: Expected 0 arguments, but got 1.
|
|
207
|
+
tests/unit/ParticleSystem.test.ts(46,30): error TS2339: Property 'createEmitter' does not exist on type 'ParticleSystem'.
|
|
208
|
+
tests/unit/ParticleSystem.test.ts(54,14): error TS2339: Property 'removeEmitter' does not exist on type 'ParticleSystem'.
|
|
209
|
+
tests/unit/ParticleSystem.test.ts(61,41): error TS2554: Expected 0 arguments, but got 1.
|
|
210
|
+
tests/unit/ParticleSystem.test.ts(62,14): error TS2339: Property 'createEmitter' does not exist on type 'ParticleSystem'.
|
|
211
|
+
tests/unit/ParticleSystem.test.ts(71,21): error TS2339: Property 'getActiveCount' does not exist on type 'ParticleSystem'.
|
|
212
|
+
tests/unit/ParticleSystem.test.ts(75,41): error TS2554: Expected 0 arguments, but got 1.
|
|
213
|
+
tests/unit/ParticleSystem.test.ts(79,14): error TS2339: Property 'createEmitter' does not exist on type 'ParticleSystem'.
|
|
214
|
+
tests/unit/ParticleSystem.test.ts(91,21): error TS2339: Property 'getActiveCount' does not exist on type 'ParticleSystem'.
|
|
215
|
+
tests/unit/ParticleSystem.test.ts(95,41): error TS2554: Expected 0 arguments, but got 1.
|
|
216
|
+
tests/unit/ParticleSystem.test.ts(96,14): error TS2339: Property 'createEmitter' does not exist on type 'ParticleSystem'.
|
|
217
|
+
tests/unit/ParticleSystem.test.ts(106,21): error TS2339: Property 'getActiveCount' does not exist on type 'ParticleSystem'.
|
|
218
|
+
tests/unit/ParticleSystem.test.ts(112,41): error TS2554: Expected 0 arguments, but got 1.
|
|
219
|
+
tests/unit/ParticleSystem.test.ts(113,14): error TS2339: Property 'burst' does not exist on type 'ParticleSystem'.
|
|
220
|
+
tests/unit/ParticleSystem.test.ts(120,21): error TS2339: Property 'getActiveCount' does not exist on type 'ParticleSystem'.
|
|
221
|
+
tests/unit/ParticleSystem.test.ts(124,41): error TS2554: Expected 0 arguments, but got 1.
|
|
222
|
+
tests/unit/ParticleSystem.test.ts(125,14): error TS2339: Property 'spawn' does not exist on type 'ParticleSystem'.
|
|
223
|
+
tests/unit/ParticleSystem.test.ts(133,21): error TS2339: Property 'getActiveCount' does not exist on type 'ParticleSystem'.
|
|
224
|
+
tests/unit/ParticleSystem.test.ts(140,39): error TS2554: Expected 0 arguments, but got 1.
|
|
225
|
+
tests/unit/ParticleSystem.test.ts(141,28): error TS2339: Property 'createEmitter' does not exist on type 'ParticleSystem'.
|
|
226
|
+
tests/unit/performance.test.tsx(2,50): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
227
|
+
tests/unit/Quaternion.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
228
|
+
tests/unit/Quaternion.test.ts(2,22): error TS2724: '"../../src/math/Quaternion"' has no exported member named 'DualQuaternion'. Did you mean 'Quaternion'?
|
|
229
|
+
tests/unit/Quaternion.test.ts(18,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
230
|
+
tests/unit/Quaternion.test.ts(23,28): error TS2339: Property 'fromEuler' does not exist on type 'typeof Quaternion'.
|
|
231
|
+
tests/unit/Quaternion.test.ts(28,28): error TS2339: Property 'fromEulerDegrees' does not exist on type 'typeof Quaternion'.
|
|
232
|
+
tests/unit/Quaternion.test.ts(35,28): error TS2339: Property 'fromToRotation' does not exist on type 'typeof Quaternion'.
|
|
233
|
+
tests/unit/Quaternion.test.ts(44,28): error TS2339: Property 'fromToRotation' does not exist on type 'typeof Quaternion'.
|
|
234
|
+
tests/unit/Quaternion.test.ts(51,28): error TS2339: Property 'fromToRotation' does not exist on type 'typeof Quaternion'.
|
|
235
|
+
tests/unit/Quaternion.test.ts(56,25): error TS2339: Property 'rotationY' does not exist on type 'typeof Matrix4'.
|
|
236
|
+
tests/unit/Quaternion.test.ts(57,28): error TS2339: Property 'fromMatrix' does not exist on type 'typeof Quaternion'.
|
|
237
|
+
tests/unit/Quaternion.test.ts(62,28): error TS2339: Property 'random' does not exist on type 'typeof Quaternion'.
|
|
238
|
+
tests/unit/Quaternion.test.ts(68,28): error TS2339: Property 'lookRotation' does not exist on type 'typeof Quaternion'.
|
|
239
|
+
tests/unit/Quaternion.test.ts(76,21): error TS2339: Property 'clone' does not exist on type 'Quaternion'.
|
|
240
|
+
tests/unit/Quaternion.test.ts(84,9): error TS2339: Property 'set' does not exist on type 'Quaternion'.
|
|
241
|
+
tests/unit/Quaternion.test.ts(92,10): error TS2339: Property 'copy' does not exist on type 'Quaternion'.
|
|
242
|
+
tests/unit/Quaternion.test.ts(97,29): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
243
|
+
tests/unit/Quaternion.test.ts(98,29): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
244
|
+
tests/unit/Quaternion.test.ts(104,29): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
245
|
+
tests/unit/Quaternion.test.ts(105,29): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
246
|
+
tests/unit/Quaternion.test.ts(113,25): error TS2339: Property 'add' does not exist on type 'Quaternion'.
|
|
247
|
+
tests/unit/Quaternion.test.ts(120,24): error TS2339: Property 'scale' does not exist on type 'Quaternion'.
|
|
248
|
+
tests/unit/Quaternion.test.ts(128,17): error TS2339: Property 'dot' does not exist on type 'Quaternion'.
|
|
249
|
+
tests/unit/Quaternion.test.ts(135,16): error TS2339: Property 'magnitude' does not exist on type 'Quaternion'.
|
|
250
|
+
tests/unit/Quaternion.test.ts(140,16): error TS2339: Property 'magnitudeSquared' does not exist on type 'Quaternion'.
|
|
251
|
+
tests/unit/Quaternion.test.ts(145,19): error TS2339: Property 'normalize' does not exist on type 'Quaternion'.
|
|
252
|
+
tests/unit/Quaternion.test.ts(151,19): error TS2339: Property 'normalize' does not exist on type 'Quaternion'.
|
|
253
|
+
tests/unit/Quaternion.test.ts(157,9): error TS2339: Property 'normalizeInPlace' does not exist on type 'Quaternion'.
|
|
254
|
+
tests/unit/Quaternion.test.ts(158,16): error TS2339: Property 'magnitude' does not exist on type 'Quaternion'.
|
|
255
|
+
tests/unit/Quaternion.test.ts(165,19): error TS2339: Property 'conjugate' does not exist on type 'Quaternion'.
|
|
256
|
+
tests/unit/Quaternion.test.ts(173,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
257
|
+
tests/unit/Quaternion.test.ts(181,21): error TS2339: Property 'inverse' does not exist on type 'Quaternion'.
|
|
258
|
+
tests/unit/Quaternion.test.ts(189,29): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
259
|
+
tests/unit/Quaternion.test.ts(190,22): error TS2339: Property 'slerp' does not exist on type 'Quaternion'.
|
|
260
|
+
tests/unit/Quaternion.test.ts(197,22): error TS2339: Property 'slerp' does not exist on type 'Quaternion'.
|
|
261
|
+
tests/unit/Quaternion.test.ts(203,29): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
262
|
+
tests/unit/Quaternion.test.ts(204,22): error TS2339: Property 'slerp' does not exist on type 'Quaternion'.
|
|
263
|
+
tests/unit/Quaternion.test.ts(211,22): error TS2339: Property 'lerp' does not exist on type 'Quaternion'.
|
|
264
|
+
tests/unit/Quaternion.test.ts(218,29): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
265
|
+
tests/unit/Quaternion.test.ts(219,22): error TS2339: Property 'nlerp' does not exist on type 'Quaternion'.
|
|
266
|
+
tests/unit/Quaternion.test.ts(225,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
267
|
+
tests/unit/Quaternion.test.ts(226,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
268
|
+
tests/unit/Quaternion.test.ts(227,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
269
|
+
tests/unit/Quaternion.test.ts(231,33): error TS2339: Property 'squad' does not exist on type 'typeof Quaternion'.
|
|
270
|
+
tests/unit/Quaternion.test.ts(238,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
271
|
+
tests/unit/Quaternion.test.ts(246,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
272
|
+
tests/unit/Quaternion.test.ts(251,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
273
|
+
tests/unit/Quaternion.test.ts(258,22): error TS2339: Property 'getAxis' does not exist on type 'Quaternion'.
|
|
274
|
+
tests/unit/Quaternion.test.ts(263,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
275
|
+
tests/unit/Quaternion.test.ts(270,28): error TS2339: Property 'fromEuler' does not exist on type 'typeof Quaternion'.
|
|
276
|
+
tests/unit/Quaternion.test.ts(278,28): error TS2339: Property 'fromEulerDegrees' does not exist on type 'typeof Quaternion'.
|
|
277
|
+
tests/unit/Quaternion.test.ts(286,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
278
|
+
tests/unit/Quaternion.test.ts(292,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
279
|
+
tests/unit/Quaternion.test.ts(301,29): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
280
|
+
tests/unit/Quaternion.test.ts(302,17): error TS2339: Property 'angleTo' does not exist on type 'Quaternion'.
|
|
281
|
+
tests/unit/Quaternion.test.ts(306,29): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
282
|
+
tests/unit/Quaternion.test.ts(307,29): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
283
|
+
tests/unit/Quaternion.test.ts(312,36): error TS2339: Property 'isIdentity' does not exist on type 'Quaternion'.
|
|
284
|
+
tests/unit/Quaternion.test.ts(314,20): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
285
|
+
tests/unit/Quaternion.test.ts(320,28): error TS2339: Property 'exp' does not exist on type 'typeof Quaternion'.
|
|
286
|
+
tests/unit/Quaternion.test.ts(325,25): error TS2339: Property 'zero' does not exist on type 'typeof Vector3'.
|
|
287
|
+
tests/unit/Quaternion.test.ts(326,28): error TS2339: Property 'exp' does not exist on type 'typeof Quaternion'.
|
|
288
|
+
tests/unit/Quaternion.test.ts(331,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
289
|
+
tests/unit/Quaternion.test.ts(338,19): error TS2339: Property 'log' does not exist on type 'Quaternion'.
|
|
290
|
+
tests/unit/Quaternion.test.ts(343,28): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
291
|
+
tests/unit/Quaternion.test.ts(350,24): error TS2339: Property 'pow' does not exist on type 'Quaternion'.
|
|
292
|
+
tests/unit/Quaternion.test.ts(356,21): error TS2339: Property 'toArray' does not exist on type 'Quaternion'.
|
|
293
|
+
tests/unit/Quaternion.test.ts(369,33): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
294
|
+
tests/unit/Quaternion.test.ts(402,18): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
295
|
+
tests/unit/Quaternion.test.ts(431,33): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
296
|
+
tests/unit/Quaternion.test.ts(459,18): error TS2339: Property 'fromAxisAngle' does not exist on type 'typeof Quaternion'.
|
|
297
|
+
tests/unit/SpatialIndex.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
298
|
+
tests/unit/SpatialIndex.test.ts(14,27): error TS2554: Expected 3 arguments, but got 2.
|
|
299
|
+
tests/unit/SpatialIndex.test.ts(21,27): error TS2339: Property 'fromVector3' does not exist on type 'typeof KDTree'.
|
|
300
|
+
tests/unit/SpatialIndex.test.ts(28,27): error TS2339: Property 'fromVector2' does not exist on type 'typeof KDTree'.
|
|
301
|
+
tests/unit/SpatialIndex.test.ts(33,27): error TS2554: Expected 3 arguments, but got 2.
|
|
302
|
+
tests/unit/SpatialIndex.test.ts(38,27): error TS2554: Expected 3 arguments, but got 2.
|
|
303
|
+
tests/unit/SpatialIndex.test.ts(44,20): error TS2673: Constructor of class 'KDTree<T>' is private and only accessible within the class declaration.
|
|
304
|
+
tests/unit/SpatialIndex.test.ts(60,27): error TS2554: Expected 3 arguments, but got 2.
|
|
305
|
+
tests/unit/SpatialIndex.test.ts(61,27): error TS2339: Property 'nearestNeighbor' does not exist on type 'KDTree<string>'.
|
|
306
|
+
tests/unit/SpatialIndex.test.ts(66,20): error TS2673: Constructor of class 'KDTree<T>' is private and only accessible within the class declaration.
|
|
307
|
+
tests/unit/SpatialIndex.test.ts(76,27): error TS2554: Expected 3 arguments, but got 2.
|
|
308
|
+
tests/unit/SpatialIndex.test.ts(77,27): error TS2339: Property 'nearestNeighbor' does not exist on type 'KDTree<string>'.
|
|
309
|
+
tests/unit/SpatialIndex.test.ts(92,27): error TS2554: Expected 3 arguments, but got 2.
|
|
310
|
+
tests/unit/SpatialIndex.test.ts(93,36): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
311
|
+
Source has 3 element(s) but target allows only 2.
|
|
312
|
+
tests/unit/SpatialIndex.test.ts(99,27): error TS2554: Expected 3 arguments, but got 2.
|
|
313
|
+
tests/unit/SpatialIndex.test.ts(100,28): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
314
|
+
Source has 3 element(s) but target allows only 2.
|
|
315
|
+
tests/unit/SpatialIndex.test.ts(104,27): error TS2554: Expected 3 arguments, but got 2.
|
|
316
|
+
tests/unit/SpatialIndex.test.ts(111,36): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
317
|
+
Source has 3 element(s) but target allows only 2.
|
|
318
|
+
tests/unit/SpatialIndex.test.ts(124,27): error TS2554: Expected 3 arguments, but got 2.
|
|
319
|
+
tests/unit/SpatialIndex.test.ts(125,38): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
320
|
+
Source has 3 element(s) but target allows only 2.
|
|
321
|
+
tests/unit/SpatialIndex.test.ts(130,27): error TS2554: Expected 3 arguments, but got 2.
|
|
322
|
+
tests/unit/SpatialIndex.test.ts(131,38): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
323
|
+
Source has 3 element(s) but target allows only 2.
|
|
324
|
+
tests/unit/SpatialIndex.test.ts(144,27): error TS2554: Expected 3 arguments, but got 2.
|
|
325
|
+
tests/unit/SpatialIndex.test.ts(145,27): error TS2339: Property 'boxQuery' does not exist on type 'KDTree<string>'.
|
|
326
|
+
tests/unit/SpatialIndex.test.ts(150,27): error TS2554: Expected 3 arguments, but got 2.
|
|
327
|
+
tests/unit/SpatialIndex.test.ts(151,27): error TS2339: Property 'boxQuery' does not exist on type 'KDTree<string>'.
|
|
328
|
+
tests/unit/SpatialIndex.test.ts(160,20): error TS2554: Expected 2 arguments, but got 1.
|
|
329
|
+
tests/unit/SpatialIndex.test.ts(165,20): error TS2554: Expected 2 arguments, but got 1.
|
|
330
|
+
tests/unit/SpatialIndex.test.ts(166,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
331
|
+
Source has 3 element(s) but target allows only 2.
|
|
332
|
+
tests/unit/SpatialIndex.test.ts(167,33): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
333
|
+
Source has 3 element(s) but target allows only 2.
|
|
334
|
+
tests/unit/SpatialIndex.test.ts(173,20): error TS2554: Expected 2 arguments, but got 1.
|
|
335
|
+
tests/unit/SpatialIndex.test.ts(174,12): error TS2551: Property 'insertAll' does not exist on type 'SpatialHashGrid<string>'. Did you mean 'insert'?
|
|
336
|
+
tests/unit/SpatialIndex.test.ts(178,33): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
337
|
+
Source has 3 element(s) but target allows only 2.
|
|
338
|
+
tests/unit/SpatialIndex.test.ts(183,20): error TS2554: Expected 2 arguments, but got 1.
|
|
339
|
+
tests/unit/SpatialIndex.test.ts(184,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
340
|
+
Source has 3 element(s) but target allows only 2.
|
|
341
|
+
tests/unit/SpatialIndex.test.ts(185,28): error TS2339: Property 'remove' does not exist on type 'SpatialHashGrid<string>'.
|
|
342
|
+
tests/unit/SpatialIndex.test.ts(187,33): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
343
|
+
Source has 3 element(s) but target allows only 2.
|
|
344
|
+
tests/unit/SpatialIndex.test.ts(192,20): error TS2554: Expected 2 arguments, but got 1.
|
|
345
|
+
tests/unit/SpatialIndex.test.ts(193,19): error TS2339: Property 'remove' does not exist on type 'SpatialHashGrid<string>'.
|
|
346
|
+
tests/unit/SpatialIndex.test.ts(197,20): error TS2554: Expected 2 arguments, but got 1.
|
|
347
|
+
tests/unit/SpatialIndex.test.ts(198,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
348
|
+
Source has 3 element(s) but target allows only 2.
|
|
349
|
+
tests/unit/SpatialIndex.test.ts(199,12): error TS2339: Property 'clear' does not exist on type 'SpatialHashGrid<string>'.
|
|
350
|
+
tests/unit/SpatialIndex.test.ts(200,33): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
351
|
+
Source has 3 element(s) but target allows only 2.
|
|
352
|
+
tests/unit/SpatialIndex.test.ts(207,20): error TS2554: Expected 2 arguments, but got 1.
|
|
353
|
+
tests/unit/SpatialIndex.test.ts(208,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
354
|
+
Source has 3 element(s) but target allows only 2.
|
|
355
|
+
tests/unit/SpatialIndex.test.ts(209,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
356
|
+
Source has 3 element(s) but target allows only 2.
|
|
357
|
+
tests/unit/SpatialIndex.test.ts(210,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
358
|
+
Source has 3 element(s) but target allows only 2.
|
|
359
|
+
tests/unit/SpatialIndex.test.ts(211,33): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
360
|
+
Source has 3 element(s) but target allows only 2.
|
|
361
|
+
tests/unit/SpatialIndex.test.ts(216,20): error TS2554: Expected 2 arguments, but got 1.
|
|
362
|
+
tests/unit/SpatialIndex.test.ts(217,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
363
|
+
Source has 3 element(s) but target allows only 2.
|
|
364
|
+
tests/unit/SpatialIndex.test.ts(218,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
365
|
+
Source has 3 element(s) but target allows only 2.
|
|
366
|
+
tests/unit/SpatialIndex.test.ts(219,33): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
367
|
+
Source has 3 element(s) but target allows only 2.
|
|
368
|
+
tests/unit/SpatialIndex.test.ts(226,20): error TS2554: Expected 2 arguments, but got 1.
|
|
369
|
+
tests/unit/SpatialIndex.test.ts(227,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
370
|
+
Source has 3 element(s) but target allows only 2.
|
|
371
|
+
tests/unit/SpatialIndex.test.ts(228,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
372
|
+
Source has 3 element(s) but target allows only 2.
|
|
373
|
+
tests/unit/SpatialIndex.test.ts(229,19): error TS2345: Argument of type '[number, number, number]' is not assignable to parameter of type 'Point'.
|
|
374
|
+
Source has 3 element(s) but target allows only 2.
|
|
375
|
+
tests/unit/SpatialIndex.test.ts(230,27): error TS2339: Property 'nearest' does not exist on type 'SpatialHashGrid<string>'.
|
|
376
|
+
tests/unit/SpatialIndex.test.ts(235,20): error TS2554: Expected 2 arguments, but got 1.
|
|
377
|
+
tests/unit/SpatialIndex.test.ts(236,19): error TS2339: Property 'nearest' does not exist on type 'SpatialHashGrid<string>'.
|
|
378
|
+
tests/unit/types.test.ts(6,13): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
379
|
+
tests/unit/types.test.ts(18,13): error TS2739: Type '{ id: string; url: string; thumbnailUrl: string; title: string; description: string; source: string; createdAt: string; userId: string; username: string; videoUrl: string; platform: string; author: string; ... 4 more ...; dominantColor: string; }' is missing the following properties from type 'Photo': imageUrl, alt, category
|
|
380
|
+
tests/unit/types.test.ts(43,71): error TS2322: Type '{ id: string; title?: string | undefined; imageUrl?: string | undefined; url: string; thumbnailUrl?: string | undefined; alt?: string | undefined; category?: string | undefined; description?: string | undefined; ... 25 more ...; dominantColor?: string | undefined; }' is not assignable to type 'Photo'.
|
|
381
|
+
Types of property 'title' are incompatible.
|
|
382
|
+
Type 'string | undefined' is not assignable to type 'string'.
|
|
383
|
+
Type 'undefined' is not assignable to type 'string'.
|
|
384
|
+
tests/unit/types.test.ts(63,13): error TS2322: Type '{ id: string; url: string; source: string; createdAt: string; }[]' is not assignable to type 'Photo[]'.
|
|
385
|
+
Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
386
|
+
tests/unit/types.test.ts(77,9): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
387
|
+
tests/unit/types.test.ts(78,9): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
388
|
+
tests/unit/types.test.ts(79,9): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
389
|
+
tests/unit/types.test.ts(88,9): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
390
|
+
tests/unit/types.test.ts(89,9): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
391
|
+
tests/unit/types.test.ts(99,13): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; likes: number; views: number; comments: number; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
392
|
+
tests/unit/types.test.ts(114,13): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
393
|
+
tests/unit/types.test.ts(126,13): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; likes: number; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
394
|
+
tests/unit/types.test.ts(143,11): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
395
|
+
tests/unit/types.test.ts(156,11): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; title: string; }' is missing the following properties from type 'Photo': imageUrl, alt, category
|
|
396
|
+
tests/unit/types.test.ts(168,11): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; title: string; description: string; }' is missing the following properties from type 'Photo': imageUrl, alt, category
|
|
397
|
+
tests/unit/types.test.ts(189,13): error TS2739: Type '{ id: string; url: string; source: string; createdAt: string; }' is missing the following properties from type 'Photo': title, imageUrl, alt, category
|
|
398
|
+
tests/unit/uiStore.test.ts(1,56): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
399
|
+
tests/unit/Vector3.test.ts(1,38): error TS2307: Cannot find module 'bun:test' or its corresponding type declarations.
|
|
400
|
+
tests/unit/Vector3.test.ts(7,25): error TS2339: Property 'zero' does not exist on type 'typeof Vector3'.
|
|
401
|
+
tests/unit/Vector3.test.ts(14,25): error TS2339: Property 'one' does not exist on type 'typeof Vector3'.
|
|
402
|
+
tests/unit/Vector3.test.ts(21,22): error TS2339: Property 'up' does not exist on type 'typeof Vector3'.
|
|
403
|
+
tests/unit/Vector3.test.ts(22,22): error TS2339: Property 'down' does not exist on type 'typeof Vector3'.
|
|
404
|
+
tests/unit/Vector3.test.ts(23,22): error TS2339: Property 'right' does not exist on type 'typeof Vector3'.
|
|
405
|
+
tests/unit/Vector3.test.ts(24,22): error TS2339: Property 'left' does not exist on type 'typeof Vector3'.
|
|
406
|
+
tests/unit/Vector3.test.ts(25,22): error TS2339: Property 'forward' does not exist on type 'typeof Vector3'.
|
|
407
|
+
tests/unit/Vector3.test.ts(26,22): error TS2339: Property 'back' does not exist on type 'typeof Vector3'.
|
|
408
|
+
tests/unit/Vector3.test.ts(30,25): error TS2339: Property 'fromArray' does not exist on type 'typeof Vector3'.
|
|
409
|
+
tests/unit/Vector3.test.ts(37,25): error TS2339: Property 'fromSpherical' does not exist on type 'typeof Vector3'.
|
|
410
|
+
tests/unit/Vector3.test.ts(51,25): error TS2339: Property 'random' does not exist on type 'typeof Vector3'.
|
|
411
|
+
tests/unit/Vector3.test.ts(56,25): error TS2339: Property 'randomInSphere' does not exist on type 'typeof Vector3'.
|
|
412
|
+
tests/unit/Vector3.test.ts(64,21): error TS2339: Property 'clone' does not exist on type 'Vector3'.
|
|
413
|
+
tests/unit/Vector3.test.ts(74,25): error TS2339: Property 'add' does not exist on type 'Vector3'.
|
|
414
|
+
tests/unit/Vector3.test.ts(83,25): error TS2339: Property 'subtract' does not exist on type 'Vector3'.
|
|
415
|
+
tests/unit/Vector3.test.ts(91,24): error TS2339: Property 'scale' does not exist on type 'Vector3'.
|
|
416
|
+
tests/unit/Vector3.test.ts(100,25): error TS2339: Property 'multiply' does not exist on type 'Vector3'.
|
|
417
|
+
tests/unit/Vector3.test.ts(109,25): error TS2339: Property 'divide' does not exist on type 'Vector3'.
|
|
418
|
+
tests/unit/Vector3.test.ts(118,25): error TS2339: Property 'divide' does not exist on type 'Vector3'.
|
|
419
|
+
tests/unit/Vector3.test.ts(126,24): error TS2339: Property 'negate' does not exist on type 'Vector3'.
|
|
420
|
+
tests/unit/Vector3.test.ts(136,9): error TS2339: Property 'set' does not exist on type 'Vector3'.
|
|
421
|
+
tests/unit/Vector3.test.ts(145,10): error TS2339: Property 'copy' does not exist on type 'Vector3'.
|
|
422
|
+
tests/unit/Vector3.test.ts(153,9): error TS2339: Property 'addInPlace' does not exist on type 'Vector3'.
|
|
423
|
+
tests/unit/Vector3.test.ts(161,9): error TS2339: Property 'subtractInPlace' does not exist on type 'Vector3'.
|
|
424
|
+
tests/unit/Vector3.test.ts(169,9): error TS2339: Property 'scaleInPlace' does not exist on type 'Vector3'.
|
|
425
|
+
tests/unit/Vector3.test.ts(177,9): error TS2339: Property 'normalizeInPlace' does not exist on type 'Vector3'.
|
|
426
|
+
tests/unit/Vector3.test.ts(179,16): error TS2339: Property 'magnitude' does not exist on type 'Vector3'.
|
|
427
|
+
tests/unit/Vector3.test.ts(184,9): error TS2339: Property 'normalizeInPlace' does not exist on type 'Vector3'.
|
|
428
|
+
tests/unit/Vector3.test.ts(195,17): error TS2339: Property 'dot' does not exist on type 'Vector3'.
|
|
429
|
+
tests/unit/Vector3.test.ts(201,25): error TS2339: Property 'cross' does not exist on type 'Vector3'.
|
|
430
|
+
tests/unit/Vector3.test.ts(211,16): error TS2339: Property 'tripleProduct' does not exist on type 'Vector3'.
|
|
431
|
+
tests/unit/Vector3.test.ts(218,16): error TS2339: Property 'magnitudeSquared' does not exist on type 'Vector3'.
|
|
432
|
+
tests/unit/Vector3.test.ts(223,16): error TS2339: Property 'magnitude' does not exist on type 'Vector3'.
|
|
433
|
+
tests/unit/Vector3.test.ts(228,19): error TS2339: Property 'normalize' does not exist on type 'Vector3'.
|
|
434
|
+
tests/unit/Vector3.test.ts(235,19): error TS2339: Property 'normalize' does not exist on type 'Vector3'.
|
|
435
|
+
tests/unit/Vector3.test.ts(252,25): error TS2339: Property 'lerp' does not exist on type 'Vector3'.
|
|
436
|
+
tests/unit/Vector3.test.ts(261,25): error TS2339: Property 'slerp' does not exist on type 'Vector3'.
|
|
437
|
+
tests/unit/Vector3.test.ts(269,21): error TS2339: Property 'toArray' does not exist on type 'Vector3'.
|
|
438
|
+
tests/unit/Vector3.test.ts(277,17): error TS2339: Property 'equals' does not exist on type 'Vector3'.
|
|
439
|
+
tests/unit/Vector3.test.ts(278,17): error TS2339: Property 'equals' does not exist on type 'Vector3'.
|
|
440
|
+
tests/unit/Vector3.test.ts(283,25): error TS2339: Property 'clampMagnitude' does not exist on type 'Vector3'.
|
|
441
|
+
tests/unit/Vector3.test.ts(289,25): error TS2339: Property 'clampMagnitude' does not exist on type 'Vector3'.
|
|
442
|
+
tests/unit/Vector3.test.ts(294,46): error TS2339: Property 'normalize' does not exist on type 'Vector3'.
|
|
443
|
+
tests/unit/Vector3.test.ts(304,17): error TS2339: Property 'angleTo' does not exist on type 'Vector3'.
|
|
444
|
+
tests/unit/Vector3.test.ts(311,27): error TS2339: Property 'toSpherical' does not exist on type 'Vector3'.
|
|
445
|
+
tests/unit/Vector3.test.ts(317,27): error TS2339: Property 'toSpherical' does not exist on type 'Vector3'.
|
|
446
|
+
tests/unit/Vector3.test.ts(325,24): error TS2339: Property 'toLatLng' does not exist on type 'Vector3'.
|
|
447
|
+
tests/unit/Vector3.test.ts(333,27): error TS2339: Property 'greatCircleDistanceTo' does not exist on type 'Vector3'.
|
|
448
|
+
tests/unit/Vector3.test.ts(340,22): error TS2339: Property 'greatCircleLerp' does not exist on type 'Vector3'.
|
|
449
|
+
tests/unit/Vector3.test.ts(347,25): error TS2339: Property 'rotateAround' does not exist on type 'Vector3'.
|
|
450
|
+
tests/unit/Vector3.test.ts(356,25): error TS2339: Property 'rotateX' does not exist on type 'Vector3'.
|
|
451
|
+
tests/unit/Vector3.test.ts(364,25): error TS2339: Property 'rotateY' does not exist on type 'Vector3'.
|
|
452
|
+
tests/unit/Vector3.test.ts(371,25): error TS2339: Property 'rotateZ' does not exist on type 'Vector3'.
|
|
453
|
+
tests/unit/Vector3.test.ts(381,28): error TS2339: Property 'projectOnto' does not exist on type 'Vector3'.
|
|
454
|
+
tests/unit/Vector3.test.ts(389,28): error TS2339: Property 'projectOnto' does not exist on type 'Vector3'.
|
|
455
|
+
tests/unit/Vector3.test.ts(398,27): error TS2339: Property 'projectOntoPlane' does not exist on type 'Vector3'.
|
|
456
|
+
tests/unit/Vector3.test.ts(405,39): error TS2339: Property 'normalize' does not exist on type 'Vector3'.
|
|
457
|
+
tests/unit/Vector3.test.ts(412,41): error TS2339: Property 'normalize' does not exist on type 'Vector3'.
|
|
458
|
+
tests/unit/Vector3.test.ts(422,23): error TS2339: Property 'setMagnitude' does not exist on type 'Vector3'.
|
|
459
|
+
tests/unit/Vector3.test.ts(428,25): error TS2339: Property 'clampMagnitude' does not exist on type 'Vector3'.
|
|
460
|
+
tests/unit/Vector3.test.ts(437,17): error TS2339: Property 'distanceSquaredTo' does not exist on type 'Vector3'.
|
|
461
|
+
tests/unit/Vector3.test.ts(443,17): error TS2339: Property 'angleTo' does not exist on type 'Vector3'.
|
|
462
|
+
tests/unit/Vector3.test.ts(450,24): error TS2339: Property 'signedAngleTo' does not exist on type 'Vector3'.
|
|
463
|
+
tests/unit/Vector3.test.ts(458,24): error TS2339: Property 'signedAngleTo' does not exist on type 'Vector3'.
|
|
464
|
+
tests/unit/Vector3.test.ts(467,25): error TS2339: Property 'nlerp' does not exist on type 'Vector3'.
|
|
465
|
+
tests/unit/Vector3.test.ts(476,25): error TS2339: Property 'hermite' does not exist on type 'Vector3'.
|
|
466
|
+
tests/unit/Vector3.test.ts(485,30): error TS2339: Property 'catmullRom' does not exist on type 'typeof Vector3'.
|
|
467
|
+
tests/unit/Vector3.test.ts(495,30): error TS2339: Property 'bezier' does not exist on type 'typeof Vector3'.
|
|
468
|
+
tests/unit/Vector3.test.ts(501,30): error TS2339: Property 'bezier' does not exist on type 'typeof Vector3'.
|
|
469
|
+
tests/unit/Vector3.test.ts(511,21): error TS2339: Property 'toFloat32Array' does not exist on type 'Vector3'.
|
|
470
|
+
tests/unit/Vector3.test.ts(521,19): error TS2339: Property 'isZero' does not exist on type 'Vector3'.
|
|
471
|
+
tests/unit/Vector3.test.ts(522,22): error TS2339: Property 'isZero' does not exist on type 'Vector3'.
|
|
472
|
+
tests/unit/Vector3.test.ts(527,21): error TS2339: Property 'abs' does not exist on type 'Vector3'.
|
|
473
|
+
tests/unit/Vector3.test.ts(535,25): error TS2339: Property 'floor' does not exist on type 'Vector3'.
|
|
474
|
+
tests/unit/Vector3.test.ts(543,24): error TS2339: Property 'ceil' does not exist on type 'Vector3'.
|
|
475
|
+
tests/unit/Vector3.test.ts(551,25): error TS2339: Property 'round' does not exist on type 'Vector3'.
|
|
476
|
+
tests/unit/Vector3.test.ts(560,17): error TS2339: Property 'equals' does not exist on type 'Vector3'.
|
|
477
|
+
tests/unit/Vector3.test.ts(561,17): error TS2339: Property 'equals' does not exist on type 'Vector3'.
|
|
478
|
+
tests/unit/Vector3.test.ts(569,25): error TS2339: Property 'zero' does not exist on type 'typeof Vector2'.
|
|
479
|
+
tests/unit/Vector3.test.ts(575,25): error TS2339: Property 'one' does not exist on type 'typeof Vector2'.
|
|
480
|
+
tests/unit/Vector3.test.ts(581,25): error TS2339: Property 'fromAngle' does not exist on type 'typeof Vector2'.
|
|
481
|
+
tests/unit/Vector3.test.ts(587,25): error TS2339: Property 'fromAngle' does not exist on type 'typeof Vector2'.
|
|
482
|
+
tests/unit/Vector3.test.ts(596,21): error TS2339: Property 'clone' does not exist on type 'Vector2'.
|
|
483
|
+
tests/unit/Vector3.test.ts(630,17): error TS2339: Property 'dot' does not exist on type 'Vector2'.
|
|
484
|
+
tests/unit/Vector3.test.ts(636,17): error TS2339: Property 'cross' does not exist on type 'Vector2'.
|
|
485
|
+
tests/unit/Vector3.test.ts(643,16): error TS2339: Property 'magnitude' does not exist on type 'Vector2'.
|
|
486
|
+
tests/unit/Vector3.test.ts(648,16): error TS2339: Property 'magnitudeSquared' does not exist on type 'Vector2'.
|
|
487
|
+
tests/unit/Vector3.test.ts(655,16): error TS2339: Property 'magnitude' does not exist on type 'Vector2'.
|
|
488
|
+
tests/unit/Vector3.test.ts(669,16): error TS2339: Property 'angle' does not exist on type 'Vector2'.
|
|
489
|
+
tests/unit/Vector3.test.ts(675,17): error TS2339: Property 'angleTo' does not exist on type 'Vector2'.
|
|
490
|
+
tests/unit/Vector3.test.ts(680,25): error TS2339: Property 'rotate' does not exist on type 'Vector2'.
|
|
491
|
+
tests/unit/Vector3.test.ts(687,22): error TS2339: Property 'perpendicular' does not exist on type 'Vector2'.
|
|
492
|
+
tests/unit/Vector3.test.ts(697,22): error TS2339: Property 'lerp' does not exist on type 'Vector2'.
|
|
493
|
+
tests/unit/Vector3.test.ts(712,16): error TS2339: Property 'toArray' does not exist on type 'Vector2'.
|
|
494
|
+
tests/unit/Vector3.test.ts(717,20): error TS2339: Property 'toVector3' does not exist on type 'Vector2'.
|
|
495
|
+
tests/unit/Vector3.test.ts(725,20): error TS2339: Property 'toVector3' does not exist on type 'Vector2'.
|
|
496
|
+
tests/unit/Vector3.test.ts(733,17): error TS2339: Property 'equals' does not exist on type 'Vector2'.
|
|
497
|
+
tests/unit/Vector3.test.ts(734,17): error TS2339: Property 'equals' does not exist on type 'Vector2'.
|
|
498
|
+
tests/unit/Vector3.test.ts(749,23): error TS2339: Property 'min' does not exist on type 'Vector3'.
|
|
499
|
+
tests/unit/Vector3.test.ts(758,23): error TS2339: Property 'max' does not exist on type 'Vector3'.
|
|
500
|
+
tests/unit/Vector3.test.ts(768,22): error TS2339: Property 'clamp' does not exist on type 'Vector3'.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
$ tsc
|
|
2
|
+
src/components/HexGrid.tsx(6,3): error TS2459: Module '"../types"' declares 'HexGridFeatureFlags' locally, but it is not exported.
|
|
3
|
+
src/components/NarrationOverlay.tsx(8,34): error TS2307: Cannot find module '@/lib/narration' or its corresponding type declarations.
|
|
4
|
+
src/components/NarrationOverlay.tsx(9,30): error TS2307: Cannot find module '@/lib/stats-tracker' or its corresponding type declarations.
|
|
5
|
+
src/components/NarrationOverlay.tsx(10,45): error TS2307: Cannot find module '@/lib/theme-colors' or its corresponding type declarations.
|
|
6
|
+
src/components/NarrationOverlay.tsx(200,31): error TS7006: Parameter 'entry' implicitly has an 'any' type.
|
|
7
|
+
src/components/NarrationOverlay.tsx(200,38): error TS7006: Parameter 'i' implicitly has an 'any' type.
|
|
8
|
+
src/ontology-adapter.ts(8,37): error TS2307: Cannot find module '@emotions-app/shared-utils/ontology/types' or its corresponding type declarations.
|
package/package.json
CHANGED