react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
22 lines (17 loc) • 528 B
JavaScript
import { ContinousBaseGesture } from './gesture';
function changeEventCalculator(current, _previous) {
'worklet';
return current;
}
export class ManualGesture extends ContinousBaseGesture {
constructor() {
super();
this.handlerName = 'ManualGestureHandler';
}
onChange(callback) {
// @ts-ignore TS being overprotective, Record<string, never> is Record
this.handlers.changeEventCalculator = changeEventCalculator;
return super.onChange(callback);
}
}
//# sourceMappingURL=manualGesture.js.map