Interface Subscription

Interface for subscriptions.

interface Subscription {
    closed: boolean;
    unsubscribe(): void;
}

Hierarchy (View Summary)

Properties

Methods

Properties

closed: boolean

A boolean value indicating whether the subscription is closed.

Methods