Files
web/types/image.ts
2024-02-12 11:26:49 +01:00

14 lines
182 B
TypeScript

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