Files
web/types/image.ts
2024-04-29 14:02:04 +02:00

14 lines
189 B
TypeScript

export type Image = {
description?: string
dimension: {
height: number
width: number
}
metadata: JSON | null
system: {
uid: string
}
title: string
url: string
}