src/lib/reset-password/set-new-password-with-reset-token.method.ts
Methods |
|
| Public call | ||||||
call(parameters: SetNewPasswordWithResetTokenMethodParameters)
|
||||||
|
Parameters :
Returns :
Promise<void>
|
import { Injectable } from '@angular/core';
import { Method } from '@rxap/pattern';
export interface SetNewPasswordWithResetTokenMethodParameters {
password: string;
token: string;
}
@Injectable({ providedIn: 'root' })
export class SetNewPasswordWithResetTokenMethod implements Method {
public call(parameters: SetNewPasswordWithResetTokenMethodParameters): Promise<void> {
throw new Error('Method not implemented.');
}
}