UNPKG
@authup/core
Version:
latest (1.0.0-beta.9)
1.0.0-beta.9
1.0.0-beta.8
1.0.0-beta.7
1.0.0-beta.5
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
1.0.0-beta.0
0.45.10
0.45.9
0.45.8
0.45.7
0.45.6
0.45.5
0.45.4
0.45.3
0.45.2
0.45.0
0.44.0
0.43.0
0.42.0
0.41.0
0.40.0
0.39.0
0.38.0
0.37.1
0.37.0
0.36.0
0.35.0
0.34.0
0.33.0
0.32.2
0.32.1
0.32.0
0.31.3
0.31.2
0.31.1
0.31.0
0.30.0
0.29.0
Package containing global constants, types & interfaces.
github.com/authup/authup
authup/authup
@authup/core
/
dist
/
domains
/
attempt-login
/
entity.d.ts
13 lines
•
315 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
type
{
User
}
from
'../user'
;
export
interface
AttemptLogin
{
id
:
string
;
ip_address
:
string
;
user_agent
:
string
;
email
:
string
;
success
:
boolean
;
user
:
User
;
user_id
:
User
[
'id'
];
created_at
:
Date
|
string
;
updated_at
:
Date
|
string
; }
//# sourceMappingURL=entity.d.ts.map