RCTPropsAnimatedNode.h 532 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) Facebook, Inc. and its affiliates.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. #import "RCTAnimatedNode.h"
  8. @class RCTBridge;
  9. @class RCTViewPropertyMapper;
  10. @interface RCTPropsAnimatedNode : RCTAnimatedNode
  11. - (void)connectToView:(NSNumber *)viewTag
  12. viewName:(NSString *)viewName
  13. bridge:(RCTBridge *)bridge;
  14. - (void)disconnectFromView:(NSNumber *)viewTag;
  15. - (void)restoreDefaultValues;
  16. @end