14 lines
182 B
TypeScript
14 lines
182 B
TypeScript
export type Image = {
|
|
description?: string
|
|
dimension: {
|
|
height: number
|
|
width: number
|
|
}
|
|
metadata: JSON
|
|
system: {
|
|
uid: string
|
|
}
|
|
title: string
|
|
url: string
|
|
}
|