15 lines
356 B
TypeScript
15 lines
356 B
TypeScript
import type { CF_ContentType } from "./Contentful_ContentType.enum";
|
|
import type { CF_TagSkeleton } from "./Contentful_Tag";
|
|
|
|
export interface CF_TextFragment {
|
|
id: string;
|
|
tags?: CF_TagSkeleton[];
|
|
title: string;
|
|
text: string;
|
|
}
|
|
|
|
export interface CF_TextFragmentSkeleton {
|
|
contentTypeId: CF_ContentType.textFragment;
|
|
fields: CF_TextFragment;
|
|
}
|