src/app/components/page-header/page-header-items.ts
An interface representing the details of the page header card
Properties |
alt |
alt:
|
Type : string
|
Alternate text for the image of the card |
image |
image:
|
Type : string
|
Path to the image of the card |
subtitle |
subtitle:
|
Type : string
|
Description of the card |
title |
title:
|
Type : string
|
Title of the card |
export interface PageHeaderItems {
/** Path to the image of the card */
image: string;
/** Title of the card */
title: string;
/** Description of the card */
subtitle: string;
/** Alternate text for the image of the card */
alt: string;
}