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