Files
frontend/node_modules/rc-select/es/hooks/useRefFunc.d.ts
2026-01-17 15:16:36 -05:00

6 lines
198 B
TypeScript

/**
* Same as `React.useCallback` but always return a memoized function
* but redirect to real function.
*/
export default function useRefFunc<T extends (...args: any[]) => any>(callback: T): T;