When I use typescript, how can I use the cookie-parser of express When I use typescript, how can I use the cookie-parser of express express express

When I use typescript, how can I use the cookie-parser of express


Just make sure that you've imported Request type from express package instead of native request declaration type.

import {Request} from 'express';