()
| 80 | } |
| 81 | |
| 82 | async function fetchActions() { |
| 83 | actions.value = (await client.value?.getActions())?.actions ?? []; |
| 84 | } |
| 85 | |
| 86 | async function fetchActiveViewers() { |
| 87 | activeViewers.value = (await client.value?.getActiveViewers())?.viewers; |
nothing calls this directly
no test coverage detected