Files
web/types/image.ts
2024-09-24 09:47:31 +02:00

14 lines
200 B
TypeScript

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