pages/types/contentful.tsx

10 lines
223 B
TypeScript
Raw Normal View History

2024-01-04 15:51:49 +01:00
import contentful from "contentful";
export type LandingPageSkeleton = {
contentTypeId: "landing-page";
fields: {
title: contentful.EntryFieldTypes.Symbol;
content: contentful.EntryFieldTypes.RichText;
};
};