jaakrecog-verify
Version:
This is a JAAK.AI Enroll© Angular Component for verify and authenticate users
11 lines (10 loc) • 399 B
TypeScript
import { Observable } from 'rxjs';
import { HttpClient } from '@angular/common/http';
import { OneToNVerify } from './classes/one-to-n-enroll';
import { LibConfig } from './verify.module';
export declare class EnrollService {
private config;
private http;
constructor(config: LibConfig, http: HttpClient);
oneToNVerify(request: any, accessToken: string): Observable<OneToNVerify>;
}