1 | import type { AuthenticationClient } from '@feathersjs/authentication-client';
|
2 | import type { Application } from '@feathersjs/feathers';
|
3 | import type { AuthenticationManagementClient, ClientOptions } from './types';
|
4 | declare module '@feathersjs/feathers' {
|
5 | interface Application {
|
6 | authenticate: AuthenticationClient['authenticate'];
|
7 | logout: AuthenticationClient['logout'];
|
8 | }
|
9 | }
|
10 | declare function makeClient(app: Application, _options?: Partial<ClientOptions>): AuthenticationManagementClient;
|
11 | export default makeClient;
|