You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* Cache callback function that always return same ref instead.
|
|
* This is used for context optimization.
|
|
*/
|
|
export default function useMemoCallback<T extends (...args: any[]) => void>(func: T): T;
|