import type { Roles } from "./roles.js"; export type User = { user_id?: string; email?: string; username?: string; roles?: Roles[]; role?: string; prod?: string; password?: string; };