12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
import type { CF_ContentType } from "src/@types/Contentful_ContentType.enum";
|
|
|
|
export interface CF_TopBanner {
|
|
id: string;
|
|
text: string;
|
|
}
|
|
|
|
export type CF_TopBannerSkeleton = {
|
|
contentTypeId: CF_ContentType.topBanner;
|
|
fields: CF_TopBanner;
|
|
};
|