Interface UnwatchedEvent<P>

interface UnwatchedEvent<P> {
    source: Remote;
    type: Unwatched;
    value: {
        clientID: string;
        presence: P;
    };
}

Type Parameters

Hierarchy

  • BaseDocEvent
    • UnwatchedEvent

Properties

Properties

source: Remote
type: Unwatched
value: {
    clientID: string;
    presence: P;
}

Type declaration

  • clientID: string
  • presence: P