Convert all remaining files to typescript.

This commit is contained in:
Jas Singh
2024-07-26 23:11:33 -07:00
parent ca5dcc629b
commit b511d76e11
84 changed files with 2075 additions and 1987 deletions

View File

@@ -0,0 +1,7 @@
import { Notification } from "types/service/notifications";
const notifHasImg = (notif: Notification) => {
return notif.image !== undefined && notif.image.length;
};
export { notifHasImg };