summaryrefslogtreecommitdiff
path: root/src/@types
diff options
context:
space:
mode:
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;
-}