14 lines
189 B
TypeScript
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
|
|
}
|