12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import type { CF_ContentType } from "src/@types/Contentful_ContentType.enum";
|
|
|
|
export interface CF_ComponentList {
|
|
internal: string;
|
|
item: string[];
|
|
}
|
|
|
|
export interface CF_ComponentListSkeleton {
|
|
contentTypeId: CF_ContentType.list
|
|
fields: CF_ComponentList
|
|
}
|