alsaze 3d975d6884
All checks were successful
Deploy / build (push) Successful in 49s
Initial
2025-11-19 20:49:25 +03:00

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[]