react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
17 lines (16 loc) • 453 B
JavaScript
;
/**
* Bit requested for each event type. The native side emits an event only when
* its bit is set, so these values must stay in sync with the C++ ones.
*/
export const CSS_EVENT_MASK = {
animationStart: 1 << 0,
animationEnd: 1 << 1,
animationIteration: 1 << 2,
animationCancel: 1 << 3,
transitionRun: 1 << 4,
transitionStart: 1 << 5,
transitionEnd: 1 << 6,
transitionCancel: 1 << 7
};
//# sourceMappingURL=types.js.map