@daveyplate/better-auth-ui
Version:
Plug & play shadcn/ui components for better-auth
16 lines (15 loc) • 409 B
text/typescript
export type Profile = {
id?: string | number
email?: string | null
name?: string | null
displayUsername?: string | null
username?: string | null
displayName?: string | null
firstName?: string | null
fullName?: string | null
isAnonymous?: boolean | null
emailVerified?: boolean | null
image?: string | null
avatar?: string | null
avatarUrl?: string | null
}