12 lines
285 B
C
12 lines
285 B
C
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
typedef NS_ENUM(NSInteger, RCTAnimationType) {
|
||
|
RCTAnimationTypeSpring = 0,
|
||
|
RCTAnimationTypeLinear,
|
||
|
RCTAnimationTypeEaseIn,
|
||
|
RCTAnimationTypeEaseOut,
|
||
|
RCTAnimationTypeEaseInEaseOut,
|
||
|
};
|