InterfaceISubCountChange

Represents a change in the number of subscriptions, as used with SubEventCount.onCount event.

interface ISubCountChange {
    newCount: number;
    prevCount: number;
}

Properties

Properties

newCount: number

New number of subscriptions.

prevCount: number

Previous number of subscriptions.