recaptcha-loader.service.d.ts 866 B

12345678910111213141516171819202122232425
  1. /// <reference types="grecaptcha" />
  2. import { Observable } from "rxjs";
  3. import * as i0 from "@angular/core";
  4. export declare class RecaptchaLoaderService {
  5. private readonly platformId;
  6. /**
  7. * @internal
  8. * @nocollapse
  9. */
  10. private static ready;
  11. ready: Observable<ReCaptchaV2.ReCaptcha>;
  12. /** @internal */
  13. private language;
  14. /** @internal */
  15. private baseUrl;
  16. /** @internal */
  17. private nonce;
  18. /** @internal */
  19. private v3SiteKey;
  20. constructor(platformId: Object, language?: string, baseUrl?: string, nonce?: string, v3SiteKey?: string);
  21. /** @internal */
  22. private init;
  23. static ɵfac: i0.ɵɵFactoryDeclaration<RecaptchaLoaderService, [null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
  24. static ɵprov: i0.ɵɵInjectableDeclaration<RecaptchaLoaderService>;
  25. }