Triggers all event listeners in the frontend waiting for `event`, passing the remaining `*args` as the arguments to each listener function. (Event listeners are set up in the frontend via the `addEventListener` function from `@decky/api`)
(event: str, *args: Any)
| 218 | # This is overriden with an actual implementation before being passed to any plugins |
| 219 | # in ../sandboxed_plugin.py 's initialize function |
| 220 | async def emit(event: str, *args: Any) -> None: |
| 221 | """ |
| 222 | Triggers all event listeners in the frontend waiting for `event`, passing the remaining `*args` as the arguments to each listener function. |
| 223 | (Event listeners are set up in the frontend via the `addEventListener` function from `@decky/api`) |
| 224 | """ |
| 225 | pass |
nothing calls this directly
no outgoing calls
no test coverage detected