import { type Authenticatable } from "../interfaces/authenticatable.interface"; import { type GoogleAuthResult } from "../services/google-auth.service"; declare global { namespace Express { interface Request { principal?: Authenticatable; googleAuthResult?: GoogleAuthResult; } } } export {};