Files
rustycms/@types/Contentful_SEO.ts

8 lines
217 B
TypeScript

export type metaRobots = "index, follow" | "noindex, follow" | "index, nofollow" | "noindex, nofollow";
export interface CF_SEO {
seoTitle : string,
seoMetaRobots : metaRobots,
seoDescription : string,
}