UNPKG

bling-erp-api-with-rate-limit

Version:
9 lines (8 loc) 479 B
import { Entity } from '../@shared/entity'; import { IRecoverPasswordResponse } from './interfaces/recover-password.interface'; import { IValidateHashParams, IValidateHashResponse } from './interfaces/validate-hash.interface'; export declare class Usuarios extends Entity { validateHash(params: IValidateHashParams): Promise<IValidateHashResponse>; changePassword(password: string): Promise<null>; recoverPassword(email: string): Promise<IRecoverPasswordResponse>; }