Created
March 23, 2020 17:01
-
-
Save t1amat9409/9c8e6808e4d283c8c4f42edc2f81c800 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface User { | |
company: string | |
username: string | |
password: string | |
role: string | |
phone: string | |
cell: string | |
}; | |
const users: User[] = [ | |
{ | |
"company": "Anderson - West", | |
"username": "Tyrel.Kirlin50", | |
"password": "adIBwm6McwnBcWN", | |
"role": "guest", | |
"phone": "(230) 615-3650", | |
"cell": "(972) 202-9559" | |
}, | |
{ | |
"company": "Blick, Hansen and Jaskolski", | |
"username": "Marisol_Nikolaus69", | |
"password": "ZGtHxOy9j7pu7eW", | |
"role": "administrator", | |
"phone": "(499) 665-4212", | |
"cell": "(214) 779-9165" | |
}, | |
{ | |
"company": "Fadel Inc", | |
"username": "Glenna.Swaniawski90", | |
"password": "HdFj9RQks5s_q18", | |
"role": "guest", | |
"phone": "(884) 916-5800", | |
"cell": "(214) 814-0757" | |
}, | |
{ | |
"company": "Donnelly and Sons", | |
"username": "Haylie.Murray", | |
"password": "3Ztu0gqGVsUUfvm", | |
"role": "user", | |
"phone": "(520) 827-3885", | |
"cell": "(469) 117-1313" | |
}, | |
{ | |
"company": "Howe LLC", | |
"username": "Melvina_Dach", | |
"password": "1OTovsWlOoNtMBG", | |
"role": "user", | |
"phone": "(938) 486-6617", | |
"cell": "(214) 306-6025" | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment