File

src/app/components/contact-card/contact-card.ts

Description

An interface representing the contact details of a person

Index

Properties

Properties

alt
alt: string
Type : string

Alternate text for the image of the person

email
email: string
Type : string

Email of the person

field
field: string
Type : string

Work field of the person

image
image: string
Type : string

Path to the image of the person

name
name: string
Type : string

Name of the person

role
role: string
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;
}

results matching ""

    No results matching ""