(immediate?: boolean)
| 681 | let interactionTimeDirty = false |
| 682 | |
| 683 | export function updateLastInteractionTime(immediate?: boolean): void { |
| 684 | if (immediate) { |
| 685 | flushInteractionTime_inner() |
| 686 | } else { |
| 687 | interactionTimeDirty = true |
| 688 | } |
| 689 | } |
| 690 | |
| 691 | /** |
| 692 | * If an interaction was recorded since the last flush, update the timestamp |
no test coverage detected