commerce/lib/sanity/sanity.types.ts
2023-08-18 15:31:44 +02:00

12 lines
199 B
TypeScript

import type { Image } from 'sanity'
export interface HomePagePayload {
content?: []
title?: string
_type?: string
seo?: {
title?: string;
description?: string;
image: Image
}
}