UNPKG
worksheets-cli
Version:
latest (3.1.5)
3.1.5
3.1.4
3.1.3
3.1.2
3.1.0
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
0.0.5
0.0.4
0.0.3
Worksheets CLI
github.com/FalconSoft/worksheets-cli
FalconSoft/worksheets-cli
worksheets-cli
/
lib
/
models
/
auth.interfaces.d.ts
15 lines
(14 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
LoginResponse
{
token
:
string
;
user
:
User
; }
export
interface
Credentials
{
username
:
string
;
password
:
string
; }
export
interface
User
{
userName
:
string
;
firstName
:
string
;
lastName
:
string
;
email
:
string
; }