loopback4-authentication
Version:
A loopback-next extension for authentication feature. Various Oauth strategies supported by this package.
9 lines (8 loc) • 403 B
TypeScript
import { Constructor, Provider } from '@loopback/context';
import { AuthenticationMetadata } from '../types';
export declare class AuthMetadataProvider implements Provider<AuthenticationMetadata | undefined> {
private readonly controllerClass;
private readonly methodName;
constructor(controllerClass: Constructor<{}>, methodName: string);
value(): AuthenticationMetadata | undefined;
}