react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
17 lines (15 loc) • 415 B
text/typescript
export const CallbackType = {
UNDEFINED: 0,
BEGAN: 1,
START: 2,
UPDATE: 3,
CHANGE: 4,
END: 5,
FINALIZE: 6,
TOUCHES_DOWN: 7,
TOUCHES_MOVE: 8,
TOUCHES_UP: 9,
TOUCHES_CANCEL: 10,
} as const;
// eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; it can be used as a type and as a value
export type CallbackType = (typeof CallbackType)[keyof typeof CallbackType];