import type { LysandClient } from "@lysand-org/client"; import type { Status } from "@lysand-org/client/types"; export const useNote = ( client: MaybeRef, noteId: string, ) => { if (!ref(client).value) { return ref(null as Status | null); } const output = ref(null as Status | null); ref(client) .value?.getStatus(noteId) .then((res) => { output.value = res.data; }); return output; };