Variable subscriptionCoordinatorConst

subscriptionCoordinator: {
    addListener: ((channel, callback, event?) => void);
    initialisePubnub: ((pnConfig) => void);
    listeners: Record<string, SubscriptionEventListenerFn[]>;
    removeAllListenersForEvent: ((channel, event?) => Record<string, SubscriptionEventListenerFn[]>);
    removeListener: ((channel, callback, event?) => Record<string, SubscriptionEventListenerFn[]>);
    subscribe: ((channel, opts?) => void);
    unsubscribe: ((channel) => void);
} = ...

Type declaration

Generated using TypeDoc