import type { Status } from "@versia/client/schemas"; import type { InjectionKey } from "vue"; import type { z } from "zod"; type PartialBy = Omit & Partial>; export const key = Symbol() as InjectionKey<{ note: PartialBy, "reblog" | "quote">; isRemote: boolean; rebloggerNote?: z.infer; }>;