UNPKG
@kokkoro/web
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.3
0.0.2
0.0.1
0.0.0
Create web serve for kokkoro.
github.com/kokkorojs/web
kokkorojs/web
@kokkoro/web
/
lib
/
model
/
user.model.d.ts
9 lines
(8 loc)
•
185 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
declare
class
User
{
account
:
string
;
password
:
string
;
id
:
string
;
createTime
:
Date
;
constructor
(
account
:
string
,
password
:
string
); }
export
default
User
;