@anoki/fse-common
Version:
Common types for FSE
21 lines (18 loc) • 448 B
text/typescript
import { Upload } from './upload-file'
import { WithMongooseProps } from './with-mongoose-props'
export type seoDataTranslationSchema = {
metaTitle: string
metaDescription: string
}
export type Seo = WithMongooseProps<{
pageUrl: string
metaTitle: string
metaDescription: string
canonicalUrl: string
ogImage: Upload | null
indexed: boolean
translations: {
it: seoDataTranslationSchema
en: seoDataTranslationSchema
}
}>