summaryrefslogtreecommitdiff
path: root/src/@types
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2021-02-06 11:46:47 +0900
committerGitHub <noreply@github.com>2021-02-06 11:46:47 +0900
commit0e45f10d99589348cc95bd044e9d06bc8dc1a10a (patch)
tree9f0c0546840d4354ec2f86eddb7da9d9a8ec3c59 /src/@types
parentdiscordapp.com → discord.com (#7140) (diff)
downloadsharkey-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.ts16
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;
-}