persona-community-5/.pnpm-store/v3/files/80/aa6e09a85ac82d1019d3e8b16679b06b37748ba682e32237c010141cca43afd65f41cf0e9855894cee3d40a62b40d7b5c5304691964038fa38d206ca417561
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

9 lines
313 B
Plaintext

type AnyFunction = (...args: any[]) => any;
/**
* Designed to approximate the behavior on `experimental_useEffectEvent` as best
* as possible until its stable release, and back-fill it as a shim as needed.
*/
declare function useEffectEvent<T extends AnyFunction>(callback?: T): T;
export { useEffectEvent };