/** * Used in the registerUser and loginUser methods as return value */ export interface Session { userId: string; sessionId: string; sessionKey: string; }