10 lines
300 B
TypeScript
10 lines
300 B
TypeScript
import type { CF_ContentType } from "src/@types/Contentful_ContentType.enum";
|
|
import type { CF_Content } from "./Contentful_Content";
|
|
|
|
export interface CF_Footer extends CF_Content {
|
|
id : string;
|
|
}
|
|
export type CF_FooterSkeleton = {
|
|
contentTypeId: CF_ContentType.footer
|
|
fields: CF_Footer
|
|
} |