In This Article
  • EventSubscription
  • EventSubscription

    export interface EventSubscription {
        /**
         * Stops listening to a set of subscribed events.
         */
        unsubscribe(): void;
    }
    

    See Also