(value: number, min: number, max: number)
| 166 | } |
| 167 | |
| 168 | function clamp(value: number, min: number, max: number) { |
| 169 | return Math.min(max, Math.max(min, value)); |
| 170 | } |
| 171 | |
| 172 | type PersistedDevMotionBlurSettings = { |
| 173 | zoomMotionBlurTuning?: unknown; |
no outgoing calls
no test coverage detected