katoikia-app/web-ui/web-react/node_modules/primereact/captcha/captcha.d.ts

16 lines
348 B
TypeScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
import * as React from 'react';
export interface CaptchaProps {
id?: string;
siteKey?: string;
theme?: string;
type?: string;
size?: string;
tabIndex?: number;
language?: string;
onResponse?(response: any): void;
onExpire?(): void;
}
export declare class Captcha extends React.Component<CaptchaProps, any> { }