Fix Easing interface, elastic should be a function

As described in the docs, `elastic` should take a value representing the bounciness of the easing function:
https://facebook.github.io/react-native/docs/easing.html
This commit is contained in:
Ed Bassett
2017-07-01 15:25:52 +10:00
committed by GitHub
parent 50b82ce053
commit acfeaa6869
+1 -1
View File
@@ -7708,7 +7708,7 @@ export interface EasingStatic {
sin: EasingFunction;
circle: EasingFunction;
exp: EasingFunction;
elastic: EasingFunction;
elastic(bounciness: number): EasingFunction;
back(s: number): EasingFunction;
bounce: EasingFunction;
bezier(x1: number,