15 lines
467 B
TypeScript
15 lines
467 B
TypeScript
import type { CF_ContentType } from "./Contentful_ContentType.enum";
|
|
import type { CF_ComponentImgSkeleton } from "./Contentful_Img";
|
|
import type { CF_ComponentLayout } from "./Contentful_Layout";
|
|
|
|
export interface CF_ImageGallery {
|
|
name: string;
|
|
images: CF_ComponentImgSkeleton[];
|
|
layout: CF_ComponentLayout;
|
|
description?: string;
|
|
}
|
|
|
|
export interface CF_ImageGallerySkeleton {
|
|
contentTypeId: CF_ContentType.imgGallery
|
|
fields:CF_ImageGallery
|
|
} |