Documentation
    Preparing search index...

    Type Alias EventHandle

    A handle returned by using addEventListener on EventEmitter. You can call remove on this handle to stop listening to the event.

    type EventHandle = {
        remove: () => void;
    }
    Index

    Properties

    Properties

    remove: () => void