#pragma once #include #include #include #include #include #include namespace reanimated::css { using KeyframeEasingFunctions = std::unordered_map; struct CSSKeyframesConfig { std::shared_ptr styleInterpolator; std::shared_ptr keyframeEasingFunctions; }; CSSKeyframesConfig parseCSSAnimationKeyframesConfig( jsi::Runtime &rt, const jsi::Value &config, const std::string &componentName, const std::shared_ptr &viewStylesRepository); } // namespace reanimated::css