UNPKG

loopback4-authentication

Version:

A loopback-next extension for authentication feature. Various Oauth strategies supported by this package.

9 lines (8 loc) 324 B
import { AnyObject } from '@loopback/repository'; import { StrategyOption } from 'passport-auth0'; export declare namespace Auth0 { type VerifyCallback = (err?: AnyObject, user?: AnyObject, info?: AnyObject) => void; interface Auth0StrategyOptions extends StrategyOption { passReqToCallback?: false; } }