2016-06-09 17:34:41 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import "RCTAnimatedNode.h"
|
|
|
|
|
2016-11-28 19:09:46 +00:00
|
|
|
@class RCTUIManager;
|
2016-06-09 17:34:41 +00:00
|
|
|
@class RCTViewPropertyMapper;
|
|
|
|
|
|
|
|
@interface RCTPropsAnimatedNode : RCTAnimatedNode
|
|
|
|
|
2017-01-27 02:14:40 +00:00
|
|
|
- (void)connectToView:(NSNumber *)viewTag
|
|
|
|
viewName:(NSString *)viewName
|
|
|
|
uiManager:(RCTUIManager *)uiManager;
|
2016-06-09 17:34:41 +00:00
|
|
|
|
|
|
|
- (void)disconnectFromView:(NSNumber *)viewTag;
|
|
|
|
|
|
|
|
@end
|