9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
import contentful from "contentful";
|
|
|
|
export type LandingPageSkeleton = {
|
|
contentTypeId: "landing-page";
|
|
fields: {
|
|
title: contentful.EntryFieldTypes.Symbol;
|
|
content: contentful.EntryFieldTypes.RichText;
|
|
};
|
|
};
|