| 3 | import { StringAnimationData } from "./StringAnimationData"; |
| 4 | |
| 5 | export class StringLerpAnimation extends StringAnimation{ |
| 6 | constructor(){ |
| 7 | super('data-string-lerp', '--string-lerp', '') |
| 8 | this.onScroll = (object: StringScrollObject, data: StringAnimationData)=>{ |
| 9 | return data.value; |
| 10 | } |
| 11 | } |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected