Skip to main content
Version: v1

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

ParameterDefaultDescription
TanySee additionalDetails. Note: must be JSON-serializable. Passing a non-serializable object (e.g. a class) will result in undefined behavior.

Properties

PropertyModifiersTypeDescription
additionalDetailsoptionalTCustom, app-specific user information
namestringThe 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