export const notificationKeys = {
  all: ["notifications"] as const,

  list: (params: {
    page?: number;
    per_page?: number;
    unread_only?: boolean;
  }) =>
    [
      ...notificationKeys.all,
      params.page,
      params.per_page,
      params.unread_only,
    ] as const,

  unreadCount: [...["notifications"], "unread-count"] as const,
};