globe.gl 2.28.1 → 2.28.3
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/globe.gl.d.ts +1 -1
- package/dist/globe.gl.js +909 -686
- package/dist/globe.gl.js.map +1 -1
- package/dist/globe.gl.min.js +5 -5
- package/dist/globe.gl.mjs +6 -2
- package/package.json +8 -8
package/dist/globe.gl.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ interface GeoCoords {
|
|
|
25
25
|
type PointerEventsFilterFn = (object: Object3D, data?: object) => boolean;
|
|
26
26
|
|
|
27
27
|
// don't surface these internal props from inner ThreeGlobe
|
|
28
|
-
type ExcludedInnerProps = 'setPointOfView';
|
|
28
|
+
type ExcludedInnerProps = 'setPointOfView' | 'pauseAnimation' | 'resumeAnimation';
|
|
29
29
|
|
|
30
30
|
interface GlobeGenericInstance<ChainableInstance>
|
|
31
31
|
extends Omit<ThreeGlobeGeneric<ChainableInstance>, ExcludedInnerProps> {
|