Create a spring that maps our value to another value
(...args: InterpolatorArgs<T, Out>)
| 49 | |
| 50 | /** Create a spring that maps our value to another value */ |
| 51 | to<Out>(...args: InterpolatorArgs<T, Out>) { |
| 52 | return G.to(this, args) as Interpolation<T, Out> |
| 53 | } |
| 54 | |
| 55 | /** @deprecated Use the `to` method instead. */ |
| 56 | interpolate<Out>(...args: InterpolatorArgs<T, Out>) { |