15 lines
430 B
TypeScript
15 lines
430 B
TypeScript
import type { CF_ContentType } from "./Contentful_ContentType.enum";
|
|
import type { CF_ComponentLayout } from "./Contentful_Layout";
|
|
import type { CF_PostEntrySkeleton } from "./Contentful_Post";
|
|
|
|
export interface CF_PostComponent {
|
|
id: string;
|
|
post: CF_PostEntrySkeleton;
|
|
layout: CF_ComponentLayout;
|
|
}
|
|
|
|
export interface CF_PostComponentSkeleton {
|
|
contentTypeId: CF_ContentType.postComponent;
|
|
fields: CF_PostComponent;
|
|
}
|