/** * @description holds user model */ export interface User { id: string; name: string; password: string; email: string; }