(tickCount = TARGET_TICKS)
| 89 | type TimeInterval = readonly [unit: TimeUnit, step: number]; |
| 90 | |
| 91 | export const getTickCount = (tickCount = TARGET_TICKS) => |
| 92 | isFiniteNumber(tickCount) ? mathMax(mathRound(tickCount), 1) : TARGET_TICKS; |
| 93 | |
| 94 | export const getTicks = ( |
| 95 | min: number, |
no outgoing calls
no test coverage detected
searching dependent graphs…