| 8 | import {VelocityEasingFn} from "../../../velocity.d"; |
| 9 | |
| 10 | interface springState { |
| 11 | x: number; |
| 12 | v: number; |
| 13 | tension: number; |
| 14 | friction: number; |
| 15 | } |
| 16 | |
| 17 | interface springDelta { |
| 18 | dx: number; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…