7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import type { Image } from "../image"
|
|
import type { EdgesWithTotalCount } from "./utils/edges"
|
|
|
|
export type Hero = {
|
|
imagesConnection: EdgesWithTotalCount<Image>
|
|
}
|