UNPKG

@salvoravida/reapop

Version:

A simple & customizable notifications system for React

8 lines (7 loc) 304 B
/// <reference types="react" /> import { TransitionProps } from 'react-transition-group/Transition'; declare type Props = { duration?: number; } & Omit<TransitionProps<HTMLElement>, 'addEndListener'>; declare const GrowTransition: (props: Props) => JSX.Element; export default GrowTransition;