UNPKG
@kyleroberts69/core
Version:
latest (1.1.3)
1.1.3
1.1.2
1.1.1
1.1.0
Core library for the Chatbot project
.
@kyleroberts69/core
/
types
/
auth.d.ts
11 lines
(10 loc)
•
212 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
interface
User
{
email
?:
string
|
null
;
image
?:
string
|
null
;
name
?:
string
|
null
; }
export
interface
Session
{
user
?:
User
|
null
;
customAccessToken
?:
string
;
expires
:
string
; }