Skip to content

Instantly share code, notes, and snippets.

@Palatnyi
Created January 7, 2020 10:09
Show Gist options
  • Save Palatnyi/7c1193b95d35f49b76a6bfd88cf79b74 to your computer and use it in GitHub Desktop.
Save Palatnyi/7c1193b95d35f49b76a6bfd88cf79b74 to your computer and use it in GitHub Desktop.
expressjs-extend-req-object
declare namespace Express {
export interface Request {
user: {
name: string,
surname: string,
age: number
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment