The user interface.

interface IUser {
    type: User;
    getDisplayName(): string;
    getEmail(): string;
    getId(): string;
    getRemoteConnections(): Set<string>;
}

Hierarchy (view full)

Properties

type: User

The type of the node.

Methods

  • Get the display name of the user.

    Returns string

    The display name of the user.

  • Get the email of the user.

    Returns string

    The email of the user.

  • Get the ID of the node.

    Returns string

    The ID of the node.

Generated using TypeDoc