function once
thefrontside/effectionfunction once<T extends EventTarget, K extends EventList<T> | (string & {})>(target: T, name: K): Operation<EventTypeFromEventTarget<T, K>>
Create an https://effection-www-s5a0jkwj0z5x.deno.dev/api/v4/Operation that yields the next event to be emitted by an EventTarget.
Type Parameters
T extends EventTarget
K extends EventList<T> | string & {}
Parameters
target: T
- the event target to be watched
name: K
- the name of the event to watch. E.g. "click"
Return Type
https://effection-www-s5a0jkwj0z5x.deno.dev/api/v4/Operation<EventTypeFromEventTarget<T, K>>
an Operation that yields the next emitted event