import { UserProfile } from './user'; import { Subscribe } from './subscription'; export interface Body { user?: UserProfile; email?: string; password?: string; rememberMe?: boolean; token?: string; oldPassword?: string; reasonForChange?: string; subscribe?: Subscribe; } export interface ChangePassword { password?: string; token?: string; oldPassword?: string; reasonForChange: string; }