frontend/composables/LocalTimeline.ts

14 lines
428 B
TypeScript
Raw Normal View History

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