| 16 | import {finishedTranslations} from 'utils/finishedTranslations'; |
| 17 | |
| 18 | export interface SeoProps { |
| 19 | title: string; |
| 20 | titleForTitleTag: undefined | string; |
| 21 | description?: string; |
| 22 | image?: string; |
| 23 | // jsonld?: JsonLDType | Array<JsonLDType>; |
| 24 | children?: React.ReactNode; |
| 25 | isHomePage: boolean; |
| 26 | searchOrder?: number; |
| 27 | } |
| 28 | |
| 29 | // If you are a maintainer of a language fork, |
| 30 | // deployedTranslations has been moved to src/utils/finishedTranslations.ts. |
nothing calls this directly
no outgoing calls
no test coverage detected