import { Role } from "./role"; export type User = { // Unique user id _id: string; // Email of the user email: string; // Name of the user name: string; // The roles of the user; roles: Role[]; license_number?: string; };