mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 12:34:17 +00:00
12 lines
285 B
Objective-C
12 lines
285 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
typedef NS_ENUM(NSInteger, RCTAnimationType) {
|
|
RCTAnimationTypeSpring = 0,
|
|
RCTAnimationTypeLinear,
|
|
RCTAnimationTypeEaseIn,
|
|
RCTAnimationTypeEaseOut,
|
|
RCTAnimationTypeEaseInEaseOut,
|
|
};
|