Skip to content

Commit

Permalink
fix(🖼): Fix bInterpolatePath() signature (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcandillon authored Jun 13, 2019
1 parent c157587 commit 6d0327c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SVG.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ export const interpolatePath = (

export const bInterpolatePath = (
value: Animated.Value<number>,
path1: ReanimatedPath,
path2: ReanimatedPath
path1: ReanimatedPath | string,
path2: ReanimatedPath | string
): Animated.Node<string> =>
interpolatePath(value, {
inputRange: [0, 1],
Expand Down

0 comments on commit 6d0327c

Please sign in to comment.