Get the current value
()
| 43 | |
| 44 | /** Get the current value */ |
| 45 | get(): T { |
| 46 | const node = getAnimated(this) |
| 47 | return node && node.getValue() |
| 48 | } |
| 49 | |
| 50 | /** Create a spring that maps our value to another value */ |
| 51 | to<Out>(...args: InterpolatorArgs<T, Out>) { |
nothing calls this directly
no test coverage detected