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