(times: number[])
| 234 | } |
| 235 | |
| 236 | function uniqueSortedTimes(times: number[]): number[] { |
| 237 | const rounded = times.map(roundTime); |
| 238 | return [...new Set(rounded)].sort((a, b) => a - b); |
| 239 | } |
| 240 | |
| 241 | export interface TransitionSampleOptions { |
| 242 | duration: number; |
no outgoing calls
no test coverage detected