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