UNPKG

loopback4-authentication

Version:

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

11 lines (10 loc) 355 B
import { Provider } from '@loopback/context'; import { VerifyFunction } from '../../types'; /** * A provider for default implementation of VerifyFunction.LocalPasswordFn * * It will just throw an error saying Not Implemented */ export declare class SamlVerifyProvider implements Provider<VerifyFunction.SamlFn> { value(): VerifyFunction.SamlFn; }