Files
web/types/enums/cardGallery.ts
Erik Tiekstra 2781a41110 Merged in feat/SW-1443-card-gallery-destination-overview (pull request #1362)
feat(SW-1443): added cardGallery block to destination overview page instead of carousel functionality

* feat(SW-1443): added cardGallery block to destination overview page instead of carousel functionality


Approved-by: Fredrik Thorsson
2025-02-18 14:42:36 +00:00

11 lines
324 B
TypeScript

export const CardGalleryFilterEnum = {
offers: "offers",
popular_destinations: "popular_destinations",
popular_hotels: "popular_hotels",
popular_cities: "popular_cities",
spa_wellness: "spa_wellness",
} as const
export type CardGalleryFilter =
(typeof CardGalleryFilterEnum)[keyof typeof CardGalleryFilterEnum]