UNPKG
@guruhotel/aura-hooks
Version:
latest (2.0.0)
2.0.0
1.3.0
1.2.0
1.1.0
1.0.0
0.3.0
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
🪝 Hooks library designed by the Guruhotel team for Aura UI
gitlab.com/guruhotel/aura-hooks
@guruhotel/aura-hooks
/
types
/
use-click-outside
/
use-click-outside.d.ts
3 lines
(2 loc)
•
221 B
TypeScript
View Raw
1
2
3
/// <reference types="react" />
export
declare
function
useClickOutside<T
extends
HTMLElement
=
any
>(
handler
:
() =>
void
,
events
?:
string
[] |
null
,
nodes
?:
HTMLElement
[]):
import
(
"react"
).
MutableRefObject
<T |
undefined
>;