| 6 | export type ExtrapolateType = 'identity' | 'clamp' | 'extend' |
| 7 | |
| 8 | export interface InterpolatorFactory { |
| 9 | <Input, Output>( |
| 10 | interpolator: InterpolatorFn<Input, Output> |
| 11 | ): typeof interpolator |
| 12 | |
| 13 | <Output>( |
| 14 | config: InterpolatorConfig<Output> |
| 15 | ): (input: number) => Animatable<Output> |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…