UNPKG

passport-steam-openid

Version:

Passport strategy for authenticating with steam openid without the use of 3rd party openid packages.

10 lines (8 loc) 310 B
import { SteamOpenIdUser } from 'passport-steam-openid'; // For different express versions, look at: // https://stackoverflow.com/questions/37377731/extend-express-request-object-using-typescript declare module 'express-serve-static-core' { interface Request { user?: SteamOpenIdUser | undefined; } }