Updated switch_type method with correct types

This commit is contained in:
brentj73
2014-07-23 13:01:36 +01:00
parent c0e29234f7
commit 4c3b642212
+2 -2
View File
@@ -6,7 +6,7 @@
declare class Recaptcha {
constructor();
static reload(): void;
static switch_type(newtype: any);
static switch_type(newtype: string): void;
static showhelp(): void;
static get_challenge(): string;
static get_response(): string;
@@ -36,4 +36,4 @@ interface CustomTranslations {
incorrect_try_again?: string;
image_alt_text?: string;
privacy_and_terms?: string;
}
}