1type ActivityLike = { 2 type: string; 3 content: string | null; 4}; 5 6export function isCommentActivity(activity: ActivityLike) { 7 return activity.type === "comment" && Boolean(activity.content); 8}