Function removeReactionSpaceEventListener

  • Type Parameters

    Parameters

    Returns Promise<void>

    Description

    Remove listener for a given event type occuring in a reactionSpaceId if no listener function passed, remove all the listeners function for a given event type

    Async

    Since

    0.1.0

    Example

    function onUserReaction(eventDetail){
    console.log(eventDetail);
    }
    removeReactionSpaceEventListener({
    event: ReactionSpaceEvent.ADD_REACTION,
    reactionSpaceId: "aa7e03fc-01f0-4a98-a2e0-3fed689632d7"
    },
    onUserReaction
    )

Generated using TypeDoc