IMember Interface
Base interface to be implemented to fetch each service's member.
Signature
export interface IMember
Remarks
This interface can be extended by each service to provide additional service-specific user metadata.
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
connections | readonly |
IConnection[] | The set of connections the user has made, e.g. from multiple tabs or devices. |
id | readonly |
string | An ID for the user, unique among each individual user connecting to the session. |
Property Details
connections
The set of connections the user has made, e.g. from multiple tabs or devices.
Signature
readonly connections: IConnection[];
Type: IConnection[]
id
An ID for the user, unique among each individual user connecting to the session.
Signature
readonly id: string;
Type: string