Interface User

Represents a user with a first name and name.

interface User {
    firstName: string;
    name: string;
}

Properties

Properties

firstName: string

The first name of the user.

name: string

The last name of the user.