UNPKG

feathers-authentication-management

Version:

Adds sign up verification, forgotten password reset, and other capabilities to local feathers-authentication

8 lines (7 loc) 559 B
import { AuthenticationManagementBase } from './AuthenticationManagementBase'; import type { DataResetPwdShort, SanitizedUser, ResetPwdWithShortServiceOptions } from '../types'; import type { Application, Params } from '@feathersjs/feathers'; export declare class ResetPwdShortService extends AuthenticationManagementBase<DataResetPwdShort, SanitizedUser, ResetPwdWithShortServiceOptions> { constructor(app: Application, options?: Partial<ResetPwdWithShortServiceOptions>); _create(data: DataResetPwdShort, params?: Params): Promise<SanitizedUser>; }