Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

9 строки
287 B

  1. /**
  2. * Returns a controller object for setting a timeout that is properly cleaned up
  3. * once the component unmounts. New timeouts cancel and replace existing ones.
  4. */
  5. export default function useTimeout(): {
  6. set: (fn: () => void, delayMs?: number) => void;
  7. clear: () => void;
  8. };