export enum userType { HELPER = "HELPER", MANAGER = "MANAGER" } export interface User { username: string; basket: number[]; type: userType }