frontend/composables/PublicTimeline.ts
2024-06-28 17:05:50 -10:00

14 lines
430 B
TypeScript

import type { LysandClient } from "@lysand-org/client";
import type { Status } from "@lysand-org/client/types";
import { type TimelineOptions, useTimeline } from "./Timeline";
export function usePublicTimeline(
client: LysandClient,
options: Partial<TimelineOptions<Status>> = {},
) {
return useTimeline(client, {
fetchFunction: (client, opts) => client.getPublicTimeline(opts),
...options,
});
}