types.ts 300 B

12345678910111213141516
  1. export type SchemaOrgTag = {
  2. type: 'link' | 'regular'
  3. prop: string
  4. value: unknown
  5. }
  6. export type MetaTags = Record<string, string | number>
  7. export type AppData = {
  8. name: string
  9. orionUrl: string
  10. twitterId?: string
  11. yppOgTitle?: string
  12. yppOgDescription?: string
  13. yppOgImage?: string
  14. }