Interface WatchedEvent<P>

interface WatchedEvent<P> {
    source: Remote;
    type: Watched;
    value: {
        clientID: string;
        presence: P;
    };
}

Type Parameters

Hierarchy

  • BaseDocEvent
    • WatchedEvent

Properties

Properties

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

Type declaration

  • clientID: string
  • presence: P