File

src/lib/reset-password/set-new-password-with-reset-token.method.ts

Index

Properties

Properties

password
password: string
Type : string
token
token: string
Type : string
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.');
  }

}

results matching ""

    No results matching ""