newsmemory-ios-sdk/Frameworks/RNReanimated.xcframework/ios-arm64/Headers/REATransitionAnimation.h

18 lines
542 B
C
Raw Normal View History

2024-05-02 15:08:24 +00:00
#import <Foundation/Foundation.h>
@interface REATransitionAnimation : NSObject
@property (nonatomic) CAAnimation *animation;
@property (nonatomic) CALayer *layer;
@property (nonatomic) NSString *keyPath;
+ (REATransitionAnimation *)transitionWithAnimation:(CAAnimation *)animation
layer:(CALayer *)layer
andKeyPath:(NSString*)keyPath;
- (void)play;
- (void)delayBy:(CFTimeInterval)delay;
- (CFTimeInterval)finishTime;
- (CFTimeInterval)duration;
@end