UNPKG
@re-flex/transition-group
Version:
latest (0.2.27)
0.2.27
0.2.26
0.2.25
0.2.24
0.2.18
Re-flex UI Transtion Controller Package
github.com/meftunca/reflex
meftunca/reflex
@re-flex/transition-group
/
TransitionGroup.d.ts
11 lines
(10 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
ReactElement
}
from
"react"
;
interface
TransitionGroupProps
{
children
:
any
;
appear
?:
boolean
;
enter
?:
boolean
;
exit
?:
boolean
;
duration
?:
number
; }
declare
const
_default
:
(
props
:
TransitionGroupProps
) =>
ReactElement
;
export
default
_default;