Skip to main content
Module

x/evt/lib/types/lib.dom.ts>RTCIceGatherer

💧EventEmitter's typesafe replacement
Go to Latest
interface RTCIceGatherer
implements RTCStatsProvider
import { type RTCIceGatherer } from "https://deno.land/x/evt@v2.3.1/lib/types/lib.dom.ts";

Properties

readonly
component: RTCIceComponent
onerror: ((this: RTCIceGatherer, ev: Event) => any) | null
onlocalcandidate: ((this: RTCIceGatherer, ev: RTCIceGathererEvent) => any) | null

Methods

createAssociatedGatherer(): RTCIceGatherer
getLocalCandidates(): RTCIceCandidateDictionary[]
getLocalParameters(): RTCIceParameters
addEventListener<K extends keyof RTCIceGathererEventMap>(
type: K,
listener: (this: RTCIceGatherer, ev: RTCIceGathererEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
removeEventListener<K extends keyof RTCIceGathererEventMap>(
type: K,
listener: (this: RTCIceGatherer, ev: RTCIceGathererEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void