()
| 279 | }; |
| 280 | |
| 281 | const stopPolling = () => { |
| 282 | if (pollingTimer) { |
| 283 | clearInterval(pollingTimer); |
| 284 | pollingTimer = null; |
| 285 | } |
| 286 | activePollingType.value = null; |
| 287 | }; |
| 288 | |
| 289 | const updatePsSearch = (params: Partial<Omit<PsSearch, 'type'>>) => { |
| 290 | Object.assign(psSearch, params); |
no outgoing calls
no test coverage detected