( range: keyof typeof timeWindows )
| 279 | } as const; |
| 280 | |
| 281 | export function isMinuteIntervalEnabledByRange( |
| 282 | range: keyof typeof timeWindows |
| 283 | ) { |
| 284 | return range === '30min' || range === 'lastHour'; |
| 285 | } |
| 286 | |
| 287 | export function isHourIntervalEnabledByRange(range: keyof typeof timeWindows) { |
| 288 | return ( |
no outgoing calls
no test coverage detected