Files
web/types/image.ts
2024-02-07 11:58:54 +01:00

9 lines
110 B
TypeScript

export type Image = {
dimension: {
height: number
width: number
}
title: string
url: string
}