UNPKG

react-native-gesture-handler

Version:

Declarative API exposing native platform touch and gesture system to React Native

8 lines (5 loc) 294 B
import type { SimplifiedShareableHost } from '../../../handlers/gestures/reanimatedWrapper'; export type LastUpdateEventMap = Map<number, { lastUpdateEvent: unknown }>; export function createLastUpdateEventMap(): SimplifiedShareableHost<LastUpdateEventMap> { return { value: new Map() }; }