Files
web/types/requests/hero.ts
2024-05-06 13:44:22 +02:00

7 lines
166 B
TypeScript

import type { Image } from "../image"
import type { EdgesWithTotalCount } from "./utils/edges"
export type Hero = {
imagesConnection: EdgesWithTotalCount<Image>
}