mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import type { User } from "bknd";
|
|
|
|
export const useUser = () => {
|
|
const getUser = () => $fetch("/api/auth/me") as Promise<{ user: User }>;
|
|
return { getUser };
|
|
};
|