Files
Project_Velocity/app/node_modules/@react-three/drei/helpers/useEffectfulState.d.ts

5 lines
224 B
TypeScript

import * as React from 'react';
type RefType<T> = React.RefObject<T> | ((state: T) => void);
export declare function useEffectfulState<T>(fn: () => T, deps?: React.DependencyList, cb?: RefType<T>): T | undefined;
export {};