From 42e016199f44f9288a9f128e426414ce563e6277 Mon Sep 17 00:00:00 2001 From: jtmst Date: Wed, 3 Jan 2024 11:20:12 -0500 Subject: [PATCH] PR feedback --- src/types/dataTypes/formatted/newsStory.ts | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/types/dataTypes/formatted/newsStory.ts diff --git a/src/types/dataTypes/formatted/newsStory.ts b/src/types/dataTypes/formatted/newsStory.ts deleted file mode 100644 index 6efc52631..000000000 --- a/src/types/dataTypes/formatted/newsStory.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { ComponentType } from 'react' -import { PersonProfileTeaserProps } from '@/templates/components/personProfile' -import { SocialLinksProps } from '@/types/drupal/field_type' -import { Administration } from '@/types/formatted/administration' -import { BreadcrumbItem } from '@/types/drupal/field_type' -import { PublishedEntity } from '@/types/formatted/publishedEntity' -import { MetaTag } from '@/types/formatted/metatags' -import { MediaImage } from '@/templates/common/mediaImage' - -export type NewsStoryTeaser = PublishedEntity & { - headingLevel?: ComponentType | keyof JSX.IntrinsicElements - link: string - title: string - image: MediaImage - introText: string -} - -export type NewsStory = PublishedEntity & { - title: string - image: MediaImage - caption: string - author: PersonProfileTeaserProps - introText: string - bodyContent: string - date: string - socialLinks: SocialLinksProps - listing: string - entityId: number - entityPath: string - administration: Administration - breadcrumbs: BreadcrumbItem[] - metatags: MetaTag[] -}