Skip to main content
Module

x/commandis/mod.ts>dom.RTCIceGatherer

Official framework for Corddis lib ( for Deno only )
Latest
interface dom.RTCIceGatherer
implements RTCStatsProvider
import { type dom } from "https://deno.land/x/commandis@v0.6.5/mod.ts";
const { RTCIceGatherer } = dom;

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