react-native-ios-utilities
Version:
Utilities for react-native + iOS and wrappers for using swift together with fabric/paper + JSI
20 lines (16 loc) • 330 B
text/typescript
// UIViewAnimating.h
// UIKit
export type UIViewAnimatingState =
| 'inactive'
| 'active'
| 'stopped';
export type UIViewAnimatingPosition =
| 'end'
| 'start'
| 'current';
export type UIViewAnimating = {
fractionComplete: boolean;
isReversed: boolean;
state: UIViewAnimatingState;
isRunning: boolean;
};