import type { LysandClient } from "@lysand-org/client"; import { StorageSerializers } from "@vueuse/core"; export type ApplicationData = Awaited< ReturnType >["data"]; export const useAppData = () => { return useLocalStorage("lysand:app_data", null, { serializer: StorageSerializers.object, }); };