project setup with core files including configuration, package management, and basic structure. Added .gitignore, README, and various TypeScript types for CMS components. Implemented initial components and layouts for the application.
This commit is contained in:
15
middlelayer/__cms/Contentful_ImageGallery.ts
Normal file
15
middlelayer/__cms/Contentful_ImageGallery.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import type { CF_ContentType } from "./Contentful_ContentType.enum.js";
|
||||
import type { CF_ComponentImgSkeleton } from "./Contentful_Img.js";
|
||||
import type { CF_ComponentLayout } from "./Contentful_Layout.js";
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user