src/app/components/contact-card/contact-card.ts
An interface representing the contact details of a person
Properties |
alt |
alt:
|
Type : string
|
Alternate text for the image of the person |
email:
|
Type : string
|
Email of the person |
field |
field:
|
Type : string
|
Work field of the person |
image |
image:
|
Type : string
|
Path to the image of the person |
name |
name:
|
Type : string
|
Name of the person |
role |
role:
|
Type : string
|
Role/Position of the person |
export interface ContactCard {
/** Work field of the person */
field: string;
/** Name of the person */
name: string;
/** Role/Position of the person */
role: string;
/** Email of the person */
email: string;
/** Path to the image of the person */
image: string;
/** Alternate text for the image of the person */
alt: string;
}