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