feat(SW-251): filter request

This commit is contained in:
Fredrik Thorsson
2024-09-04 15:57:32 +02:00
parent 3f6e2ca06e
commit 6089af764a
6 changed files with 28 additions and 35 deletions

View File

@@ -1,3 +1,6 @@
import { HotelFilter } from "@/server/routers/hotels/output"
import { HotelFilters, HotelId } from "@/server/routers/hotels/output"
export type HotelFilterProps = { filters: HotelFilter }
export type HotelFilterProps = {
hotelId: HotelId
filters: HotelFilters
}