8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
import { Notification } from "types/service/notifications";
|
|
|
|
const notifHasImg = (notif: Notification) => {
|
|
return notif.image !== undefined && notif.image.length;
|
|
};
|
|
|
|
export { notifHasImg };
|