declare namespace Express { export interface Request { /** * The user's id */ user: any; /** * Abritrary data gotten from the token */ data: any; } }