( post: Pick<Post, 'type' | 'subType' | 'sharedPost'> | undefined | null, )
| 87 | }; |
| 88 | |
| 89 | export const isShareLikePost = ( |
| 90 | post: Pick<Post, 'type' | 'subType' | 'sharedPost'> | undefined | null, |
| 91 | ): boolean => post?.type === PostType.Share || isSocialTwitterShareLike(post); |
| 92 | |
| 93 | export const isPostOrSharedPostTwitter = ( |
| 94 | post: Pick<Post, 'type' | 'sharedPost'> | undefined | null, |
no test coverage detected