13 lines
325 B
TypeScript
13 lines
325 B
TypeScript
import type { CF_ContentType } from "./Contentful_ContentType.enum";
|
|
import type { CF_LinkSkeleton } from "./Contentful_Link";
|
|
|
|
export interface CF_Link_List {
|
|
headline: string;
|
|
links: CF_LinkSkeleton[];
|
|
}
|
|
|
|
export type CF_LinkListSkeleton = {
|
|
contentTypeId: CF_ContentType.componentLinkList;
|
|
fields: CF_Link_List;
|
|
};
|