Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/threejs_4_deno/src/core/EventDispatcher.js>EventDispatcher#removeEventListener

A simple transformation of three.js for use within a Deno workflow
Go to Latest
method EventDispatcher.prototype.removeEventListener
import { EventDispatcher } from "https://deno.land/x/threejs_4_deno@v121/src/core/EventDispatcher.js";

Removes a listener from an event type.

Parameters

type: string

The type of the listener that gets removed.

listener: (event: Event) => void

The listener function that gets removed.