Skip to content

Instantly share code, notes, and snippets.

@ppulwey
Last active September 9, 2022 11:43
Show Gist options
  • Save ppulwey/78b7b98fa006fd925b30a253613eebcf to your computer and use it in GitHub Desktop.
Save ppulwey/78b7b98fa006fd925b30a253613eebcf to your computer and use it in GitHub Desktop.
type MyCookies = {
cookieOne: string;
cookieTwo: string;
};
const myMiddleware = () => {
return (request: Request, response: Response, next: NextFunction) => {
getCookies<MyCookies>(request)
next();
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment