( post: Pick<Post, 'type'> | undefined | null, )
| 60 | post?.sharedPost?.type === PostType.VideoYouTube); |
| 61 | |
| 62 | export const isSocialTwitterPost = ( |
| 63 | post: Pick<Post, 'type'> | undefined | null, |
| 64 | ): boolean => post?.type === PostType.SocialTwitter; |
| 65 | |
| 66 | export const isSocialTwitterShareLike = ( |
| 67 | post: Pick<Post, 'type' | 'subType' | 'sharedPost'> | undefined | null, |
no outgoing calls
no test coverage detected