UNPKG
carpooluikit
Version:
latest (1.0.0)
1.0.0
carpool finance uikit
github.com/TiscotSerVices/blzd-uikit
TiscotSerVices/blzd-uikit
carpooluikit
/
dist
/
hooks
/
useTooltip
/
types.d.ts
8 lines
(7 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/// <reference types="react" />
export
interface
TooltipRefs
{
targetRef
:
React
.
Dispatch
<
React
.
SetStateAction
<
HTMLElement
|
null
>>;
tooltip
:
React
.
ReactNode
;
tooltipVisible
:
boolean
; }
export
declare
type
TriggerType
=
"click"
|
"hover"
|
"focus"
;