UNPKG

@seas-computing/nestjs-harvard-key

Version:

This repository provides a way to connect NestJS applications to HarvardKey and provide a rudimentary form of authorization (in the form of route guards) out of the box

9 lines (8 loc) 140 B
import 'express'; import { User } from './User'; declare module 'express' { interface Request { user?: User; } } export {};