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