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
11 lines
324 B
TypeScript
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]
|