File

src/app/components/carousel/slider-items.ts

Description

An interface representing the carousel slide details

Index

Properties

Properties

alt
alt: string
Type : string

Alternate text for the image of the slide

body
body: string
Type : string

Description of the slide

buttonText
buttonText: string
Type : string

Label for the buttton on the slide

image
image: string
Type : string

Path to the image of the slide

route
route: string
Type : string
Optional

Route for the button on the slide

title
title: string
Type : string

Title of the slide

url
url: string
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;
}

results matching ""

    No results matching ""