Skip to content

Commit 4e06f76

Browse files
users type
1 parent 4f51dc9 commit 4e06f76

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/types/types.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,27 @@ export type FeedItemsType = {
55
email: string
66
body: string
77
}
8+
9+
export type UsersType = {
10+
id: number
11+
name: string
12+
username: string
13+
email: string
14+
address: {
15+
street: string
16+
suite: string
17+
city: string
18+
zipcode: string
19+
geo: {
20+
lat: string
21+
lng: string
22+
}
23+
}
24+
phone: string
25+
website: string
26+
company: {
27+
name: string
28+
catchPhrase: string
29+
bs: string
30+
}
31+
}

0 commit comments

Comments
 (0)