AzureUser Interface
Since Azure provides user names for all of its members, we extend the IUser interface to include this service-specific value. *
Signature
export interface AzureUser<T = any> extends IUser
Extends: IUser
Type Parameters
Parameter | Default | Description |
---|---|---|
T | any | See additionalDetails. Note: must be JSON-serializable. Passing a non-serializable object (e.g. a class ) will result in undefined behavior. |
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
additionalDetails | optional |
T | Custom, app-specific user information |
name | string | The user's name |
Property Details
additionalDetails
Custom, app-specific user information
Signature
additionalDetails?: T;
Type: T
name
The user's name
Signature
name: string;
Type: string