Files
web/types/components/image.ts
2024-10-08 08:53:41 +02:00

9 lines
107 B
TypeScript

export type ApiImage = {
url: string
title: string
meta: {
alt: string
caption: string
}
}