src/app/components/board-members/board-members.ts
An interface representing board member details
Properties |
alt |
alt:
|
Type : string
|
Alternate text for the board member image |
description |
description:
|
Type : string
|
Description of the board member |
image |
image:
|
Type : string
|
Url to the image of a board member |
export interface BoardMemberItems {
/** Url to the image of a board member */
image: string;
/** Description of the board member */
description: string;
/** Alternate text for the board member image */
alt: string;
}