Interface Person

A person or organization.

interface Person {
    email?: string;
    link?: Link;
    name?: string;
}

Properties

Properties

email?: string

Email address.

link?: Link

Link to website or other external information about this person.

name?: string

Name of person or organization.