mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-04-04 11:11:06 +03:00
16 lines
308 B
TypeScript
16 lines
308 B
TypeScript
declare module 'recaptcha-promise' {
|
|
interface IVerifyOptions {
|
|
secret_key?: string;
|
|
}
|
|
|
|
interface IVerify {
|
|
(response: string, remoteAddress?: string): Promise<boolean>;
|
|
init(options: IVerifyOptions): IVerify;
|
|
}
|
|
|
|
namespace recaptchaPromise {} // Hack
|
|
|
|
const verify: IVerify;
|
|
|
|
export = verify;
|
|
}
|