File

src/lib/login/sign-in-with-email-and-password.method.ts

Index

Methods

Methods

call
call(parameters: SignInWithEmailAndPasswordMethodParameters)
Parameters :
Name Type Optional
parameters SignInWithEmailAndPasswordMethodParameters No
Returns : Promise<void>
import { Injectable } from '@angular/core';
import { Method } from '@rxap/pattern';

export interface SignInWithEmailAndPasswordMethodParameters {
  email: string;
  password: string;
  remember?: boolean;
}

@Injectable({ providedIn: 'root' })
export class SignInWithEmailAndPasswordMethod implements Method {

  call(parameters: SignInWithEmailAndPasswordMethodParameters): Promise<void> {
    throw new Error('Method not implemented.');
  }

}

results matching ""

    No results matching ""