We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f51dc9 commit 4e06f76Copy full SHA for 4e06f76
src/types/types.ts
@@ -5,3 +5,27 @@ export type FeedItemsType = {
5
email: string
6
body: string
7
}
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
28
+ catchPhrase: string
29
+ bs: string
30
31
+}
0 commit comments