Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

useUpdatedRef.d.ts 226B

1234567
  1. /// <reference types="react" />
  2. /**
  3. * Returns a ref that is immediately updated with the new value
  4. *
  5. * @param value The Ref value
  6. */
  7. export default function useUpdatedRef<T>(value: T): import("react").MutableRefObject<T>;