Skip to content

Commit

Permalink
fix: fixed internal types
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhom committed Apr 14, 2020
1 parent ae1f7e8 commit e029f1a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/item/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { Easing } from 'react-native-reanimated';
import Animated, { Easing } from 'react-native-reanimated';

const DEFAULT_ITEM_ANIMATION_EASING = Easing.out(Easing.exp);
const DEFAULT_ITEM_ANIMATION_EASING: Animated.EasingFunction = Easing.out(
Easing.exp
);
const DEFAULT_ITEM_ANIMATION_DURATION = 500;
const DEFAULT_ITEM_INNER_SPACE = 12;
const DEFAULT_ITEM_OUTER_SPACE = 12;
Expand Down

0 comments on commit e029f1a

Please sign in to comment.