import type { NotificationId } from "./NotificationId"; /** * Mark a comment reply as read. */ export type MarkNotificationAsRead = { notification_id: NotificationId; read: boolean; };