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