src/app/components/section-card/section-card-items.ts
An interface representing the details of the card
Properties |
description |
description:
|
Type : string
|
Description of the card |
gif |
gif:
|
Type : string
|
Path to the GIF file of the card |
image |
image:
|
Type : string
|
Path to the image of the card |
route |
route:
|
Type : string
|
Route of the page to redirect when the card is clicked |
title |
title:
|
Type : string
|
Title of the card |
export interface SectionCardItems {
/** Title of the card */
title: string;
/** Description of the card */
description: string;
/** Path to the image of the card */
image: string;
/** Path to the GIF file of the card */
gif: string;
/** Route of the page to redirect when the card is clicked */
route: string;
}