@react-three/fiber 8.6.1 → 8.6.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @react-three/fiber
2
2
 
3
+ ## 8.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 57c12e9c: fix(types): @react-three/drei declaration files
8
+
3
9
  ## 8.6.1
4
10
 
5
11
  ### Patch Changes
@@ -3,7 +3,7 @@ import * as THREE from 'three';
3
3
  import { EventHandlers } from './core/events';
4
4
  import { AttachType } from './core/renderer';
5
5
  export declare type NonFunctionKeys<T> = {
6
- [K in keyof T]: T[K] extends Function ? never : K;
6
+ [K in keyof T]-?: T[K] extends Function ? never : K;
7
7
  }[keyof T];
8
8
  export declare type Overwrite<T, O> = Omit<T, NonFunctionKeys<O>> & O;
9
9
  declare type Args<T> = T extends new (...args: any) => any ? ConstructorParameters<T> : T;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-three/fiber",
3
- "version": "8.6.1",
3
+ "version": "8.6.2",
4
4
  "description": "A React renderer for Threejs",
5
5
  "keywords": [
6
6
  "react",