import {Need} from './Need'; export enum userType { HELPER, MANAGER } export interface User { username: string; basket: number[]; type: userType }