You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm_srca/Mohem/node_modules_/primeng/components/captcha/captcha.d.ts

26 lines
705 B
TypeScript

import { AfterViewInit, EventEmitter, NgZone, ElementRef } from '@angular/core';
export declare class Captcha implements AfterViewInit {
el: ElementRef;
_zone: NgZone;
siteKey: string;
theme: string;
type: string;
size: string;
tabindex: number;
language: string;
initCallback: string;
onResponse: EventEmitter<any>;
onExpire: EventEmitter<any>;
private _instance;
constructor(el: ElementRef, _zone: NgZone);
ngAfterViewInit(): void;
init(): void;
reset(): void;
getResponse(): String;
recaptchaCallback(response: string): void;
recaptchaExpiredCallback(): void;
ngOnDestroy(): void;
}
export declare class CaptchaModule {
}