UNPKG

298 BTypeScriptView Raw
1import * as React from 'react';
2import { Animated } from 'react-native';
3
4type TransitionProgressContextBody = {
5 progress: Animated.Value;
6 closing: Animated.Value;
7 goingForward: Animated.Value;
8};
9
10export default React.createContext<TransitionProgressContextBody | undefined>(
11 undefined
12);