UNPKG
instagram-model-ts
Version:
latest (1.0.0)
1.0.0
Instagram model
instagram-model-ts
/
src
/
Model
/
User.ts
9 lines
(8 loc)
•
132 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
export
type
User
= {
id
:
string
,
name
:
string
,
email
:
string
,
password
:
string
,
image
:
string
,
followers
:
Array
<
User
> }