module.d.ts 153 B

12345678
  1. declare namespace Express {
  2. interface Request {
  3. realIP?: string;
  4. pageType?: string;
  5. linkTarget?: string;
  6. protectedLink?: string;
  7. }
  8. }