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
| Parameter | Constraint | Default | Description |
|---|---|---|---|
| T | |||
| Keys | string | ||
| TValueAccessor | ValueAccessor<T> | ||
| SpecificAttendeeId | AttendeeId | AttendeeId |
Properties
| Property | Type | Description |
|---|---|---|
| attendee | Attendee<SpecificAttendeeId> | Associated Attendee. |
| items | ReadonlyMap<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>>