feathers-authentication-management
Version:
Adds sign up verification, forgotten password reset, and other capabilities to local feathers-authentication
8 lines (7 loc) • 554 B
TypeScript
import { AuthenticationManagementBase } from './AuthenticationManagementBase';
import type { SanitizedUser, DataIdentityChange, IdentityChangeServiceOptions } from '../types';
import type { Application, Params } from '@feathersjs/feathers';
export declare class IdentityChangeService extends AuthenticationManagementBase<DataIdentityChange, SanitizedUser, IdentityChangeServiceOptions> {
constructor(app: Application, options?: Partial<IdentityChangeServiceOptions>);
_create(data: DataIdentityChange, params?: Params): Promise<SanitizedUser>;
}