src/lib/login/sign-in-with-email-and-password.method.ts
Properties |
email:
|
Type : string
|
| password |
password:
|
Type : string
|
| remember |
remember:
|
Type : boolean
|
| Optional |
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.');
}
}