Skip to main content

LatestMapClientData Interface

Collection of latest known values for a specific Attendee.

Sealed

This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.

Signature​

/** @sealed */
export interface LatestMapClientData<T, Keys extends string, TValueAccessor extends ValueAccessor<T>, SpecificAttendeeId extends AttendeeId = AttendeeId>

Type Parameters​

ParameterConstraintDefaultDescription
T
Keysstring
TValueAccessorValueAccessor<T>
SpecificAttendeeIdAttendeeIdAttendeeId

Properties​

PropertyTypeDescription
attendeeAttendee<SpecificAttendeeId>Associated Attendee.
itemsReadonlyMap<Keys, LatestData<T, TValueAccessor>>Map of items for the state.

Property Details​

attendee​

Associated Attendee.

Signature​

attendee: Attendee<SpecificAttendeeId>;

Type: Attendee<SpecificAttendeeId>

items​

Map of items for the state.

Signature​

items: ReadonlyMap<Keys, LatestData<T, TValueAccessor>>;

Type: ReadonlyMap<Keys, LatestData<T, TValueAccessor>>