This specifies the structure of user objects. It must be implemented by implementations.

interface IUser {
    email: string;
    id: string;
    name: string;
    type: string;
}

Properties

Properties

email: string

E-Mail address.

id: string

An internal id used to check if user objects are identical.

name: string

The full name of the user.

type: string

Specifies type of user. Possible values other than 'local' are unknown as of this time.