diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2021-02-06 11:46:47 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-06 11:46:47 +0900 |
| commit | 0e45f10d99589348cc95bd044e9d06bc8dc1a10a (patch) | |
| tree | 9f0c0546840d4354ec2f86eddb7da9d9a8ec3c59 /src/@types | |
| parent | discordapp.com → discord.com (#7140) (diff) | |
| download | sharkey-0e45f10d99589348cc95bd044e9d06bc8dc1a10a.tar.gz sharkey-0e45f10d99589348cc95bd044e9d06bc8dc1a10a.tar.bz2 sharkey-0e45f10d99589348cc95bd044e9d06bc8dc1a10a.zip | |
Improve captcha (#7138)
Diffstat (limited to 'src/@types')
| -rw-r--r-- | src/@types/recaptcha-promise.d.ts | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/@types/recaptcha-promise.d.ts b/src/@types/recaptcha-promise.d.ts deleted file mode 100644 index cfbd5eebf2..0000000000 --- a/src/@types/recaptcha-promise.d.ts +++ /dev/null @@ -1,16 +0,0 @@ -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; -} |