UNPKG

react-navigation

Version:
13 lines (10 loc) 265 B
import { Animated } from 'react-native'; export default class AnimatedValueSubscription { constructor(value, callback) { this._value = value; this._token = value.addListener(callback); } remove() { this._value.removeListener(this._token); } }