Morget-01 / web /models /user.ts
MGFeng's picture
Upload 2985 files
c867d8f verified
Raw
History Blame Contribute Delete
314 Bytes
export type User = {
id: string
firstName: string
lastName: string
name: string
phone: string
username: string
email: string
avatar: string
}
export type UserResponse = {
users: User[]
}
export const fetchUsers = (url: string) =>
fetch(url).then<UserResponse>(r => r.json())