UNPKG

feathers-authentication-management

Version:

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

5 lines (4 loc) 692 B
import type { Params } from '@feathersjs/feathers'; import type { IdentifyUser, SanitizedUser, VerifySignupSetPasswordOptions, VerifySignupSetPasswordWithShortTokenOptions, NotifierOptions } from '../types'; export declare function verifySignupSetPasswordWithLongToken(options: VerifySignupSetPasswordOptions, verifyToken: string, password: string, notifierOptions?: NotifierOptions, params?: Params): Promise<SanitizedUser>; export declare function verifySignupSetPasswordWithShortToken(options: VerifySignupSetPasswordWithShortTokenOptions, verifyShortToken: string, identifyUser: IdentifyUser, password: string, notifierOptions?: NotifierOptions, params?: Params): Promise<SanitizedUser>;