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