import type { CF_ContentType } from "./Contentful_ContentType.enum.js"; import type { CF_ComponentLayout } from "./Contentful_Layout.js"; export interface CF_Quote { quote: string; author: string; variant: "left" | "right"; layout: CF_ComponentLayout; } export type CF_QuoteSkeleton = { contentTypeId: CF_ContentType.quote; fields: CF_Quote; };