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