import { AxiosInstance } from "axios"; import { Notification } from "@/app/chat/[chatId]/types"; export const getChatNotifications = async ( chatId: string, axiosInstance: AxiosInstance ): Promise => { return (await axiosInstance.get(`/notifications/${chatId}`)) .data; };