UNPKG

feathers-authentication-management

Version:

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

5 lines (4 loc) 590 B
import type { Params } from '@feathersjs/feathers'; import type { SanitizedUser, VerifySignupOptions, VerifySignupWithShortTokenOptions, IdentifyUser, NotifierOptions } from '../types'; export declare function verifySignupWithLongToken(options: VerifySignupOptions, verifyToken: string, notifierOptions?: NotifierOptions, params?: Params): Promise<SanitizedUser>; export declare function verifySignupWithShortToken(options: VerifySignupWithShortTokenOptions, verifyShortToken: string, identifyUser: IdentifyUser, notifierOptions?: NotifierOptions, params?: Params): Promise<SanitizedUser>;