(offOpacity: number = 0)
| 231 | } |
| 232 | |
| 233 | export function fadeIn(offOpacity: number = 0): StyleAnimation { |
| 234 | return (t: number) => ({ opacity: tween(offOpacity, 1, t) }); |
| 235 | } |
| 236 | |
| 237 | export function tween( |
| 238 | from: number, |
no test coverage detected