src/app/components/carousel/slider-items.ts
An interface representing the carousel slide details
Properties |
alt |
alt:
|
Type : string
|
Alternate text for the image of the slide |
body |
body:
|
Type : string
|
Description of the slide |
buttonText |
buttonText:
|
Type : string
|
Label for the buttton on the slide |
image |
image:
|
Type : string
|
Path to the image of the slide |
route |
route:
|
Type : string
|
Optional |
Route for the button on the slide |
title |
title:
|
Type : string
|
Title of the slide |
url |
url:
|
Type : string
|
Optional |
URL for the button on the slide |
export interface SliderItems {
/** Title of the slide */
title: string;
/** Description of the slide */
body: string;
/** Path to the image of the slide */
image: string;
/** URL for the button on the slide */
url?: string;
/** Route for the button on the slide */
route?: string;
/** Label for the buttton on the slide*/
buttonText: string;
/** Alternate text for the image of the slide */
alt: string;
}