Guest User

Untitled

a guest
Aug 16th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import * as express from 'express';
  2.  
  3. declare module 'express' {
  4. interface Request {
  5. body: Record<string, unknown>;
  6. cookies: Record<string, unknown>;
  7. params: Record<string, unknown>;
  8. query: Record<string, unknown>;
  9. route: Record<string, unknown>;
  10. signedCookies: Record<string, unknown>;
  11. }
  12. }
Add Comment
Please, Sign In to add comment