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

10 lines (9 loc) 190 B
import 'express-session'; import { User } from './User'; declare module 'express-session' { interface SessionData { loginOrigin?: string; user?: User; } } export {};