11 lines
289 B
TypeScript
11 lines
289 B
TypeScript
import type { CF_ContentType } from "src/@types/Contentful_ContentType.enum";
|
|
|
|
export interface CF_ComponentRichtext {
|
|
content?: Document;
|
|
layout?: any;
|
|
}
|
|
|
|
export interface CF_ComponentRichtextSkeleton {
|
|
contentTypeId: CF_ContentType.richtext
|
|
fields: CF_ComponentRichtext
|
|
} |