react-native-ios-utilities
Version:
Utilities for react-native + iOS and wrappers for using swift together with fabric/paper + JSI
12 lines (10 loc) • 317 B
text/typescript
import type { UIViewAnimating } from "./UIViewAnimating";
export type UIViewPropertyAnimator = UIViewAnimating & {
duration: number;
delay: number;
isInterruptible: boolean;
isUserInteractionEnabled: boolean;
isManualHitTestingEnabled: boolean;
scrubsLinearly: boolean;
pausesOnCompletion: boolean;
};