UNPKG

flemo

Version:

A modern React router library with built-in motion animations and smooth transitions

13 lines (12 loc) 400 B
import { History } from '../history/store'; import { TransitionName } from '../transition/typing'; export interface ScreenContextProps extends History { id: string; isActive: boolean; isRoot: boolean; isPrev: boolean; zIndex: number; prevTransitionName: TransitionName; } declare const ScreenContext: import('react').Context<ScreenContextProps>; export default ScreenContext;