Skip to main content

removeEventListener

method EventSource.removeEventListener
Jump to headingEventSource.removeEventListener<K extends keyof EventSourceEventMap>(
type: K,
listener: () => any,
options?: boolean | EventListenerOptions,
): void

Type Parameters Jump to heading

Parameters Jump to heading

Return Type Jump to heading

void
Jump to headingEventSource.removeEventListener(
type: string,
listener: () => any,
options?: boolean | EventListenerOptions,
): void

Parameters Jump to heading

Jump to headingtype: string
Jump to headinglistener: () => any
optional
Jump to headingoptions: boolean | EventListenerOptions

Return Type Jump to heading

void
Jump to headingEventSource.removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void
Back to top