UNPKG

500 BTypeScriptView Raw
1import { AuthenticationStrategy, AuthenticationBase } from './core';
2import { Application, Service } from '@feathersjs/feathers';
3export declare class AuthenticationBaseStrategy implements AuthenticationStrategy {
4 authentication?: AuthenticationBase;
5 app?: Application;
6 name?: string;
7 setAuthentication(auth: AuthenticationBase): void;
8 setApplication(app: Application): void;
9 setName(name: string): void;
10 get configuration(): any;
11 get entityService(): Service<any>;
12}