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