3d-force-graph 1.71.0 → 1.71.2

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/README.md CHANGED
@@ -56,7 +56,7 @@ And check out the [React bindings](https://github.com/vasturiano/react-force-gra
56
56
  import ForceGraph3D from '3d-force-graph';
57
57
  ```
58
58
 
59
- or using a script tag
59
+ or using a *script* tag
60
60
 
61
61
  ```html
62
62
  <script src="//unpkg.com/3d-force-graph"></script>
@@ -14,7 +14,7 @@ type ObjAccessor<T> = Accessor<object, T>;
14
14
  type Coords = { x: number; y: number; z: number; };
15
15
 
16
16
  // don't surface these internal props from inner ThreeForceGraph
17
- type ExcludedInnerProps = 'onLoading' | 'onFinishLoading' | 'onUpdate' | 'onFinishUpdate' | 'tickFrame' | 'd3AlphaTarget';
17
+ type ExcludedInnerProps = 'onLoading' | 'onFinishLoading' | 'onUpdate' | 'onFinishUpdate' | 'tickFrame' | 'd3AlphaTarget' | 'resetCountdown';
18
18
 
19
19
  interface ForceGraph3DGenericInstance<ChainableInstance>
20
20
  extends Omit<ThreeForceGraphGeneric<ChainableInstance>, ExcludedInnerProps> {