Implemented a simple page to view the currently registered users
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
export interface User {
|
||||
email: string;
|
||||
name: Name;
|
||||
name: string;
|
||||
profilePicture: string;
|
||||
id: string;
|
||||
experience: number;
|
||||
type: Type;
|
||||
}
|
||||
interface Name {
|
||||
first: string;
|
||||
last: string;
|
||||
}
|
||||
|
||||
export type Type = "student" | "teacher" | "admin" | "owner" | "developer";
|
||||
|
||||
Reference in New Issue
Block a user