misskey/src/client/scripts/mark-notification-read.ts

4 lines
103 B
TypeScript

export function markNotificationRead(notification: any) {
return { ...notification, isRead: true };
}