LatestMapItemRemovedClientData Interface
Identifier and metadata for a removed item.
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 LatestMapItemRemovedClientData<K extends string>
Type Parameters
| Parameter | Constraint | Description |
|---|---|---|
| K | string |
Properties
| Property | Type | Description |
|---|---|---|
| attendee | Attendee | Associated Attendee. |
| key | K | Key of the removed item. |
| metadata | LatestMetadata | Metadata associated with the removal of the item. |
Property Details
attendee
Associated Attendee.
Signature
attendee: Attendee;
Type: Attendee
key
Key of the removed item.
Signature
key: K;
Type: K
metadata
Metadata associated with the removal of the item.
Signature
metadata: LatestMetadata;
Type: LatestMetadata