moh-common-lib
Version:
A library of Angular components, services, and styles for B.C. Government Ministry of Health (MoH).
12 lines (11 loc) • 411 B
TypeScript
import { HttpClient, HttpResponse } from '@angular/common/http';
import { Observable } from 'rxjs';
export declare class ServerPayload {
nonce: string;
token: string;
}
export declare class RecaptchaDataService {
private httpClient;
constructor(httpClient: HttpClient);
verifyRecaptcha(apiBaseUrl: string, nonce: string, token: string): Observable<HttpResponse<ServerPayload>>;
}