UNPKG
darkbasic-accounts-typeorm
Version:
alpha (0.34.0-alpha-20231121003541-41e20773)
latest (0.34.0)
rc (0.34.0-rc-20231121004651-2f0da36a)
0.34.0
0.34.0-rc-20231121004651-2f0da36a
0.34.0-alpha-20231121003541-41e20773
0.34.0-alpha-20231121000855-41e20773
0.34.0-alpha-20231120210331-c05da0b4
0.34.0-alpha-20231120204850-c05da0b4
0.33.2-alpha-20231020080632-080a111d
TypeORM adaptor for accounts
github.com/accounts-js/accounts/tree/master
accounts-js/accounts
darkbasic-accounts-typeorm
/
lib
/
entity
/
UserSession.d.ts
14 lines
(13 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
User
}
from
'./User'
;
export
declare
class
UserSession
{
id
:
string
;
user
:
User
;
token
:
string
;
valid
:
boolean
;
userAgent
?:
string
|
null
;
ip
?:
string
|
null
;
extra
?:
object
;
createdAt
:
string
;
updatedAt
:
string
;
userId
:
string
; }