UNPKG
ariakit-react-utils
Version:
latest (0.17.0-next.27)
0.17.0-next.27
0.17.0-next.26
Ariakit React utils
ariakit.org
ariakit/ariakit
ariakit-react-utils
/
ts
/
misc.d.ts
6 lines
(5 loc)
•
222 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
MutableRefObject
,
RefCallback
}
from
"react"
;
/** * Sets both a function and object React ref. */
export
declare
function
setRef<T>(
ref
:
RefCallback
<T> |
MutableRefObject
<T> |
null
|
undefined
,
value
: T):
void
;