fix
Build Project / build (push) Successful in 31s

This commit is contained in:
Kevin
2026-06-28 11:37:12 +02:00
parent b217b33c2d
commit 9cb4909481
12 changed files with 89 additions and 89 deletions
+12
View File
@@ -0,0 +1,12 @@
interface ServerImage {
id: number
link: string
order: number
}
interface NewImage {
file: File
order: number
}
export type Image = ServerImage | NewImage