frontend/composables/NotificationTimeline.ts
2024-08-28 00:23:29 +02:00

14 lines
427 B
TypeScript

import type { Client } from "@versia/client";
import type { Notification } from "@versia/client/types";
import { type TimelineOptions, useTimeline } from "./Timeline";
export function useNotificationTimeline(
client: Client,
options: Partial<TimelineOptions<Notification>> = {},
) {
return useTimeline(client, {
fetchFunction: (client, opts) => client.getNotifications(opts),
...options,
});
}