pages/types/contentful.tsx
Karel Košnar 773d65d95a tabor web
2024-01-04 15:51:49 +01:00

9 lines
223 B
TypeScript

import contentful from "contentful";
export type LandingPageSkeleton = {
contentTypeId: "landing-page";
fields: {
title: contentful.EntryFieldTypes.Symbol;
content: contentful.EntryFieldTypes.RichText;
};
};