32 lines
468 B
TypeScript
32 lines
468 B
TypeScript
export interface UserCompany {
|
|
name: string
|
|
catchPhrase: string
|
|
bs: string
|
|
}
|
|
|
|
export interface UserAddressGeo {
|
|
lat: string
|
|
lng: string
|
|
}
|
|
|
|
export interface UserAddress {
|
|
street: string
|
|
suite: string
|
|
city: string
|
|
zipcode: string
|
|
geo: UserAddressGeo
|
|
}
|
|
|
|
export interface User {
|
|
id: number
|
|
name: string
|
|
username: string
|
|
email: string
|
|
address: UserAddress
|
|
phone: string
|
|
website: string
|
|
company: UserCompany
|
|
}
|
|
|
|
export type Users = User[]
|