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