1import type { OAuthSession } from '@atproto/oauth-client'; 2 3declare module 'fastify' { 4 interface FastifyRequest { 5 did: string | null; 6 oauthSession: OAuthSession | null; 7 } 8}