Interface UnsubscribeObject

An object with the unsubscribe method. Subscribable stores might choose to return such object instead of directly returning UnsubscribeFunction from a subscription call.

interface UnsubscribeObject {
    unsubscribe: UnsubscribeFunction;
}

Properties

Properties

unsubscribe: UnsubscribeFunction

A method that acts as the UnsubscribeFunction.

Generated using TypeDoc