UNPKG
aau-auth-kit-ui
Version:
latest (1.0.1)
1.0.1
Plug & play shadcn/ui components for aau-auth-kit with Next.js integration
aau-auth-kit-ui
/
src
/
types
/
profile.ts
13 lines
(12 loc)
•
324 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
type
Profile
= {
id
?:
string
|
number
email
?:
string
|
null
name
?:
string
|
null
firstName
?:
string
|
null
fullName
?:
string
|
null
isAnonymous
?:
boolean
|
null
emailVerified
?:
boolean
|
null
image
?:
string
|
null
avatar
?:
string
|
null
avatarUrl
?:
string
|
null
}