LegacyViewManagerInteropViewProps.h 689 B

12345678910111213141516171819202122232425262728
  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. #include <folly/dynamic.h>
  8. #include <react/components/view/ViewProps.h>
  9. #include <unordered_map>
  10. namespace facebook {
  11. namespace react {
  12. class LegacyViewManagerInteropViewProps final : public ViewProps {
  13. public:
  14. LegacyViewManagerInteropViewProps() = default;
  15. LegacyViewManagerInteropViewProps(
  16. const LegacyViewManagerInteropViewProps &sourceProps,
  17. const RawProps &rawProps);
  18. #pragma mark - Props
  19. folly::dynamic const otherProps;
  20. };
  21. } // namespace react
  22. } // namespace facebook