Files
hydro-builder-app/node_modules/@react-three/drei/helpers/useEffectfulState.d.ts
2026-06-13 17:36:44 -07:00

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 {};