@react-three/postprocessing 2.14.4 → 2.14.6

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.
@@ -1,4 +1,5 @@
1
1
  /// <reference types="react" />
2
+ import { Vector2 } from 'three';
2
3
  import { GlitchEffect, GlitchMode } from 'postprocessing';
3
4
  import { ReactThreeFiber } from '@react-three/fiber';
4
5
  export type GlitchProps = ConstructorParameters<typeof GlitchEffect>[0] & Partial<{
@@ -11,10 +12,10 @@ export type GlitchProps = ConstructorParameters<typeof GlitchEffect>[0] & Partia
11
12
  }>;
12
13
  export declare const Glitch: import("react").ForwardRefExoticComponent<{
13
14
  blendFunction?: import("postprocessing").BlendFunction | undefined;
14
- chromaticAberrationOffset?: import("three").Vector2 | undefined;
15
- delay?: import("three").Vector2 | undefined;
16
- duration?: import("three").Vector2 | undefined;
17
- strength?: import("three").Vector2 | undefined;
15
+ chromaticAberrationOffset?: Vector2 | undefined;
16
+ delay?: Vector2 | undefined;
17
+ duration?: Vector2 | undefined;
18
+ strength?: Vector2 | undefined;
18
19
  perturbationMap?: import("three").Texture | undefined;
19
20
  dtSize?: number | undefined;
20
21
  columns?: number | undefined;