1*fe5cfb17STomasz Sapeta #include "WorkletEventHandler.h"
2*fe5cfb17STomasz Sapeta 
3*fe5cfb17STomasz Sapeta namespace ABI48_0_0reanimated {
4*fe5cfb17STomasz Sapeta 
process(jsi::Runtime & rt,const jsi::Value & eventValue)5*fe5cfb17STomasz Sapeta void WorkletEventHandler::process(
6*fe5cfb17STomasz Sapeta     jsi::Runtime &rt,
7*fe5cfb17STomasz Sapeta     const jsi::Value &eventValue) {
8*fe5cfb17STomasz Sapeta   handler.callWithThis(rt, handler, eventValue);
9*fe5cfb17STomasz Sapeta }
10*fe5cfb17STomasz Sapeta 
11*fe5cfb17STomasz Sapeta } // namespace reanimated
12