(immediate?: boolean)
| 659 | let interactionTimeDirty = false |
| 660 | |
| 661 | export function updateLastInteractionTime(immediate?: boolean): void { |
| 662 | if (immediate) { |
| 663 | flushInteractionTime_inner() |
| 664 | } else { |
| 665 | interactionTimeDirty = true |
| 666 | } |
| 667 | } |
| 668 | |
| 669 | /** |
| 670 | * If an interaction was recorded since the last flush, update the timestamp |
no test coverage detected