UNPKG

realworld-hono-drizzle

Version:
13 lines (10 loc) 260 B
import { boolean, nullable, object, string } from "valibot"; export const Profile = object({ username: string(), bio: nullable(string()), image: nullable(string()), following: boolean(), }); export const ProfileResponse = object({ profile: Profile, });