import { Request } from 'express'; export interface RequestScopeInterceptor { readonly name: string; intercept(req: Request): void; }