Merged in chore/remove-unused-files (pull request #3483)

chore: Remove unused files

* Remove unused files


Approved-by: Matilda Landström
This commit is contained in:
Anton Gunnarsson
2026-01-23 12:33:14 +00:00
parent ae77fa3028
commit f8e69f9cc2
8 changed files with 0 additions and 107 deletions

View File

@@ -1,21 +0,0 @@
import type { FocalPoint } from "@scandic-hotels/common/utils/imageVault"
interface Dimensions {
width: number
height: number
aspectRatio: number
}
interface Meta {
alt: string | undefined | null
caption: string | undefined | null
}
export interface ApiImage {
id: string
url: string
title: string
meta: Meta
dimensions?: Dimensions
focalPoint?: FocalPoint
}

View File

@@ -1,4 +0,0 @@
export type ShowMoreButtonParams = {
disabled?: boolean
loadMoreData: () => void
}