()
| 131 | } |
| 132 | |
| 133 | get velocity(): VelocityProp<T> { |
| 134 | const node = getAnimated(this)! |
| 135 | return ( |
| 136 | node instanceof AnimatedValue |
| 137 | ? node.lastVelocity || 0 |
| 138 | : node.getPayload().map(node => node.lastVelocity || 0) |
| 139 | ) as any |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * When true, this value has been animated at least once. |
nothing calls this directly
no test coverage detected