egirlskey/src/@types/recaptcha-promise.d.ts
2019-02-03 22:21:55 +09:00

17 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;
}