import type { Status } from "@versia/client/schemas"; import type { z } from "zod"; import { type TimelineOptions, useTimeline } from "./Timeline"; export function useLocalTimeline( options: Partial>> = {}, ) { const authStore = useAuthStore(); return useTimeline({ fetchFunction: (opts) => authStore.client.getLocalTimeline(opts), ...options, }); }