1 | import { AuthenticationStrategy, AuthenticationBase } from './core';
|
2 | import { Application, Service } from '@feathersjs/feathers';
|
3 | export 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;
|
12 | }
|