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