Handle that is returned when registering a callback with Evented.on. The remove function can be used to unregister the callback function.

interface Handle {
    remove: () => void;
}

Implemented by

Properties

Properties

remove: () => void