UNPKG

203 BTypeScriptView Raw
1/**
2 * Cache callback function that always return same ref instead.
3 * This is used for context optimization.
4 */
5export default function useMemoCallback<T extends (...args: any[]) => void>(func: T): T;