src/app/components/count-info-card/count-info-card.ts
An interface representing the details of the count information card
Properties |
alt |
alt:
|
Type : string
|
Alternate text for the image of the metric card |
count |
count:
|
Type : string
|
Count of the metric card |
image |
image:
|
Type : string
|
Path of the image |
text |
text:
|
Type : string
|
Label of the metric card |
export interface CountInfoCard {
/** Path of the image */
image: string;
/** Count of the metric card */
count: string;
/** Label of the metric card */
text: string;
/** Alternate text for the image of the metric card */
alt: string;
}