9 lines
110 B
TypeScript
9 lines
110 B
TypeScript
export type Image = {
|
|
dimension: {
|
|
height: number
|
|
width: number
|
|
}
|
|
title: string
|
|
url: string
|
|
}
|